/**
 * Urban Chat — UI Uniformity styles
 * Aligning cross-surface behavior to canonical pages (Live Room, Circles, Browse)
 */

@keyframes uc-live-count-bump {
  0% { transform: scale(1); }
  30% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.uc-live-count-bump {
  animation: uc-live-count-bump 0.45s ease-out;
  display: inline-block;
}

@keyframes uc-pulse-active {
  0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 160, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}

.uc-pulse-active {
  animation: uc-pulse-active 2s infinite;
}

.uc-pulse-slow {
  animation-duration: 4s !important;
}

.uc-pulse-fast {
  animation-duration: 0.8s !important;
}

.uc-chat-typing-indicator.uc-pulse-active {
  animation: uc-pulse-typing 1.5s infinite ease-in-out;
}

@keyframes uc-pulse-typing {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-1px); }
}

@keyframes uc-pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(153, 27, 27, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(153, 27, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(153, 27, 27, 0); }
}

.uc-pulse-red {
  animation: uc-pulse-red 2s infinite;
}

@keyframes uc-pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(68, 255, 68, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(68, 255, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(68, 255, 68, 0); }
}

.uc-pulse-green {
  animation: uc-pulse-green 2s infinite;
}

@keyframes uc-success-flash-border {
  0% { border-color: rgb(16, 185, 129); box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.4); }
  100% { border-color: transparent; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.uc-success-flash {
  animation: uc-success-flash-border 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes uc-just-now-pulse {
  0% { transform: scale(1); color: var(--uc-primary); opacity: 1; }
  50% { transform: scale(1.1); color: var(--uc-danger); opacity: 0.8; }
  100% { transform: scale(1); color: var(--uc-primary); opacity: 1; }
}

.uc-just-now-pulse {
  display: inline-block;
  animation: uc-just-now-pulse 2s ease-in-out infinite;
  font-weight: 900 !important;
}

/* Canonical active scale for physical feedback */
.active\:scale-95:active,
.uc-surface-btn:active {
  transform: scale(0.96) translateY(1px) !important;
}

.uc-surface-btn {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, filter 0.2s ease, border-color 0.3s ease, background-color 0.3s ease !important;
}

.uc-surface-input,
.uc-surface-select,
.uc-field-focus-momentum {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, transform 0.2s ease !important;
}

.uc-surface-btn:hover {
  transform: scale(1.02) translateY(-1px) !important;
  filter: brightness(1.05);
}

@keyframes uc-count-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.uc-count-pulse {
  animation: uc-count-pulse 0.3s ease-out;
  color: var(--uc-danger) !important;
  opacity: 1 !important;
}

@keyframes uc-focus-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); transform: scale(1); }
  50% { box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.2); transform: scale(1.01); }
  100% { box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.1); transform: scale(1.005); }
}

.uc-surface-input:focus,
.uc-browse-control:focus,
.uc-circles-input:focus,
.uc-field-focus-momentum:focus,
.uc-focus-pulse:focus {
  animation: uc-focus-pulse 2s infinite ease-in-out !important;
  outline: none !important;
}

.uc-surface-input:focus,
.uc-browse-control:focus,
.uc-circles-input:focus,
.uc-field-focus-momentum:focus {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.4s;
  z-index: 10;
  /* Ensure the element is always visible when focused, even if focus fires
     before the uc-list-item-enter animation completes (which would leave
     opacity at 0 since uc-focus-pulse doesn't animate opacity). */
  opacity: 1 !important;
}

@keyframes uc-member-joined-pulse {
  0% { color: var(--uc-gold-dim); transform: scale(1); filter: brightness(1.5); }
  50% { color: var(--uc-text-on-primary); transform: scale(1.1); filter: brightness(2); text-shadow: 0 0 8px #D4A017; }
  100% { color: var(--uc-gold-dim); transform: scale(1); filter: brightness(1); }
}

.uc-member-joined-pulse {
  display: inline-block;
  animation: uc-member-joined-pulse 1.5s ease-in-out 3;
}

@keyframes uc-input-error-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.uc-input-error-shake {
  animation: uc-input-error-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border-color: var(--uc-danger) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}

@keyframes uc-active-speaker-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7); border-color: var(--uc-gold-dim); }
  70% { box-shadow: 0 0 0 10px rgba(212, 160, 23, 0); border-color: var(--uc-gold-dim); }
  100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); border-color: var(--uc-gold-dim); }
}

.uc-active-speaker-pulse {
  animation: uc-active-speaker-pulse 2s infinite;
  border-width: 2px !important;
  border-style: solid !important;
}

@keyframes uc-list-item-enter {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.uc-list-stagger,
.uc-list-item-enter {
  opacity: 0;
  animation: uc-list-item-enter 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes uc-button-stagger-enter {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.uc-button-stagger {
  opacity: 0;
  animation: uc-button-stagger-enter 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Parent class to apply staggered delays to children */
.uc-stagger-parent .uc-button-stagger:nth-child(1),
.uc-stagger-parent .uc-list-item-enter:nth-child(1) { animation-delay: 0.05s; }
.uc-stagger-parent .uc-button-stagger:nth-child(2),
.uc-stagger-parent .uc-list-item-enter:nth-child(2) { animation-delay: 0.1s; }
.uc-stagger-parent .uc-button-stagger:nth-child(3),
.uc-stagger-parent .uc-list-item-enter:nth-child(3) { animation-delay: 0.15s; }
.uc-stagger-parent .uc-button-stagger:nth-child(4),
.uc-stagger-parent .uc-list-item-enter:nth-child(4) { animation-delay: 0.2s; }
.uc-stagger-parent .uc-button-stagger:nth-child(5),
.uc-stagger-parent .uc-list-item-enter:nth-child(5) { animation-delay: 0.25s; }
.uc-stagger-parent .uc-button-stagger:nth-child(6),
.uc-stagger-parent .uc-list-item-enter:nth-child(6) { animation-delay: 0.3s; }

/* Link Hover State Momentum - Aligning to Canonical Browse momentum */
.uc-gated-web-links a,
.uc-signup-login-link,
.uc-signup-inline-link,
.uc-gated-web-brand,
.uc-gated-topbar-user a {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  display: inline-block;
}

.uc-gated-web-links a:hover,
.uc-signup-login-link:hover,
.uc-signup-inline-link:hover,
.uc-gated-web-brand:hover,
.uc-gated-topbar-user a:hover {
  transform: translateX(4px);
  color: var(--uc-gold-dim) !important;
}

/* Section Header Momentum — Aligning to Canonical Browse/Circles anchor feel */
.section-header {
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.section-header:hover {
  transform: scale(1.015);
  animation: uc-focus-pulse 2s infinite ease-in-out;
}

/* Section Header Icon Momentum — playful rotation on emojis/icons */
.section-header:hover i,
.section-header:hover svg,
.section-header:hover .uc-icon {
  transform: rotate(12deg) scale(1.1);
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Breaking Wire Item Momentum */
.wire-item {
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 0.75rem;
  padding: 0.25rem;
}

.wire-item:hover {
  transform: scale(1.01) translateX(4px);
  background: var(--uc-primary-wash);
  box-shadow: -4px 0 0 var(--uc-primary);
}

/* Guest Slot Physicality */
.uc-live-guest-slot, .uc-live-slot-preview {
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.uc-live-guest-slot:hover, .uc-live-slot-preview:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 25px var(--uc-shadow-ink-strong);
}

.uc-live-guest-slot:active, .uc-live-slot-preview:active {
  transform: scale(0.95);
}

/* Canonical Urban Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(212, 160, 23, 0.3);
  border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 160, 23, 0.6);
}

/* Profile Avatar Edit Overlay */
.uc-avatar-edit-overlay {
  position: absolute;
  inset: 0;
  background: var(--uc-scrim-strong);
  color: var(--uc-text-on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 10;
}

.avatar-frame-lg:hover .uc-avatar-edit-overlay {
  opacity: 1;
}

@keyframes uc-avatar-frame-momentum {
  0% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
  50% { transform: scale(1.05) rotate(2deg); box-shadow: 0 0 20px 4px rgba(212, 160, 23, 0.4); }
  100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}

.uc-avatar-frame-momentum:hover,
.uc-avatar-frame-momentum:focus-within {
  animation: uc-avatar-frame-momentum 2s infinite ease-in-out;
}

/* ── Global — Nav Tab Active State Glow ────────────────────────────────── */
.nav-tab-active {
  position: relative;
  color: var(--uc-gold-dim) !important;
  text-shadow: 0 0 8px rgba(212, 160, 23, 0.4);
}

.nav-tab-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--uc-gold-dim);
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.6);
  border-radius: 2px;
}

/* ── Live Room Radar Item Physicality ───────────────────────────────────── */
#home-live-room-radar-list button {
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease, box-shadow 0.2s ease !important;
}

#home-live-room-radar-list button:hover {
  transform: scale(1.02) translateY(-1px) !important;
  box-shadow: 0 4px 12px var(--uc-shadow-ink-weak);
  z-index: 2;
}

#home-live-room-radar-list button:active {
  transform: scale(0.98) translateY(0px) !important;
}

/* ── Global Button Cooldown / Processing State ──────────────────────────── */
.uc-surface-btn[disabled],
.uc-surface-btn.is-processing,
.uc-surface-btn.surfaceBtnLoading,
.uc-surface-btn.uc-loading-spinner,
.uc-surface-btn.is-cooldown {
  opacity: 0.7;
  filter: grayscale(0.3) brightness(0.9);
  cursor: wait !important;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}

/* Subtle scanning shimmer for processing buttons */
.uc-surface-btn.is-processing::after,
.uc-surface-btn.surfaceBtnLoading::after,
.uc-surface-btn.uc-loading-spinner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--uc-veil-strong), transparent);
  animation: uc-btn-shimmer 1.2s infinite linear;
}

/* Cooldown progress overlay */
.uc-surface-btn.is-cooldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(212, 160, 23, 0.6);
  width: 100%;
  animation: uc-cooldown-progress var(--cooldown-duration, 1s) linear forwards;
  z-index: 10;
}

@keyframes uc-cooldown-progress {
  from { width: 100%; }
  to { width: 0%; }
}

@keyframes uc-btn-shimmer {
  100% { left: 200%; }
}

/* ── Admin Status Bar Syncing Shimmer ──���────────────────────────────────── */
.uc-admin-statusbar.is-syncing {
  animation: uc-statusbar-shimmer 1.5s infinite ease-in-out;
}

@keyframes uc-statusbar-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ── Home Surface — Skyline Drift ───────────────────────────────────────── */

@keyframes uc-skyline-drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
  100% { transform: translateX(0); }
}

.uc-splash-skyline-back {
  animation: uc-skyline-drift 80s ease-in-out infinite !important;
  will-change: transform;
}

.uc-splash-skyline-front {
  animation: uc-skyline-drift 50s ease-in-out infinite reverse !important;
  will-change: transform;
}

/* ── Home Surface — Hero Logo Shine ─────────────────────────────────────── */

@keyframes uc-logo-shine {
  0% { stop-color: #FFD700; stop-opacity: 1; offset: 0%; }
  10% { stop-color: #FFF; stop-opacity: 1; offset: 20%; }
  20% { stop-color: #FFD700; stop-opacity: 1; offset: 40%; }
  100% { stop-color: #FFD700; stop-opacity: 1; offset: 100%; }
}

/* Since the logo is text-based, we'll use a standard pulse for now or a filter */
.uc-splash-logo text[fill="#FFD700"] {
  animation: uc-logo-pulse-gold 4s ease-in-out infinite;
}

@keyframes uc-logo-pulse-gold {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(255, 215, 0, 0)); }
  50% { filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6)); }
}

/* ── Profile — Bio Length Physical Shake ────────────────────────────────── */

@keyframes uc-count-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.uc-count-pulse {
  color: var(--uc-primary) !important;
  animation: uc-count-shake 0.2s ease-in-out infinite;
  opacity: 1 !important;
}

@keyframes uc-vibe-legendary-glow {
  0% { background-color: var(--uc-gold-dim); box-shadow: 0 0 5px #D4A017; }
  50% { background-color: var(--uc-gold); box-shadow: 0 0 15px var(--uc-gold); }
  100% { background-color: var(--uc-gold-dim); box-shadow: 0 0 5px #D4A017; }
}

@keyframes uc-vibe-bg-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.uc-vibe-legendary {
  background-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent) !important;
  background-size: 200% 100% !important;
  animation: uc-vibe-legendary-glow 2s infinite ease-in-out, uc-vibe-bg-shimmer 2s infinite linear !important;
}

/* ── Back-to-Top Button (cross-platform) ────────────────────────────────────
   Markup uses Tailwind utilities (`opacity-0 pointer-events-none translate-y-10`)
   that are NOT in the precompiled tailwind.css bundle, which caused the
   "RETURN TO BLOCK" label and arrow to leak onto every page at scroll y=0.
   These rules force the correct hidden default + reveal-on-scroll behavior.
*/
#uc-back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(2.5rem);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
#uc-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#uc-back-to-top > span:last-child {
  /* Tooltip label — hidden until hover */
  opacity: 0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}
#uc-back-to-top:hover > span:last-child,
#uc-back-to-top:focus-visible > span:last-child {
  opacity: 1;
}

/* ── Global — System Signal Momentum ────────────────────────────────── */
.uc-signal-broadcast {
  border: 1px solid var(--uc-gold-dim) !important;
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.2);
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.05), transparent);
}

.uc-signal-broadcast.uc-list-item-enter {
  animation: uc-list-item-enter 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* ── Chat Surface — Room Activity Moment (New Badge) ────────────────── */
.uc-chat-lobby-new-badge {
  background: var(--uc-gold-dim);
  color: var(--uc-text-on-gold);
  font-size: 8px;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 8px;
  animation: uc-list-item-enter 0.3s ease-out;
  box-shadow: 0 0 8px rgba(212, 160, 23, 0.4);
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

@keyframes uc-chat-bubble-friend-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); box-shadow: 0 0 12px rgba(212, 160, 23, 0.3); }
  100% { transform: scale(1); }
}

.uc-chat-bubble-friend-pulse {
  animation: uc-chat-bubble-friend-pulse 2s ease-in-out infinite;
}

@keyframes uc-member-leaving {
  0% { opacity: 1; transform: translateX(0) scale(1); }
  100% { opacity: 0; transform: translateX(12px) scale(0.9); }
}

.uc-member-leaving {
  animation: uc-member-leaving 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
  pointer-events: none !important;
}

/* ── Tailwind Compat Layer ──────────────────────────────────────────────────
   The precompiled /assets/vendor/tailwind/tailwind.css omits several utility
   classes used in route templates (notably opacity/pointer-events + sm:*).
   These fallbacks restore intended behavior without touching every page.
*/
.opacity-0 { opacity: 0; }
.pointer-events-none { pointer-events: none; }

.scale-105 { transform: scale(1.05) !important; }

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:inline { display: inline; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:hidden { display: none; }

  .sm\:w-auto { width: auto; }
  .sm\:w-4 { width: 1rem; }
  .sm\:w-\[44px\] { width: 44px; }
  .sm\:w-\[120px\] { width: 120px; }
  .sm\:\!w-12 { width: 3rem !important; }

  .sm\:h-4 { height: 1rem; }
  .sm\:h-8 { height: 2rem; }
  .sm\:h-\[44px\] { height: 44px; }
  .sm\:h-\[260px\] { height: 260px; }
  .sm\:\!h-14 { height: 3.5rem !important; }

  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-start { align-items: flex-start; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }

  .sm\:gap-1\.5 { gap: 0.375rem; }
  .sm\:gap-2 { gap: 0.5rem; }
  .sm\:gap-3 { gap: 0.75rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-6 { gap: 1.5rem; }

  .sm\:p-3 { padding: 0.75rem; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
  .sm\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .sm\:py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
  .sm\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .sm\:pr-2 { padding-right: 0.5rem; }
  .sm\:mb-2 { margin-bottom: 0.5rem; }
  .sm\:-top-\[2px\] { top: -2px; }
  .sm\:-left-\[2px\] { left: -2px; }

  .sm\:text-left { text-align: left; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-\[9px\] { font-size: 9px; }
  .sm\:text-\[10px\] { font-size: 10px; }
  .sm\:text-\[11px\] { font-size: 11px; }
}

/* Profile Map Radar Pulse */
.uc-map-radar-pulse {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--uc-primary-wash-strong);
  border-radius: 50%;
  animation: uc-map-pulse 2s infinite;
  pointer-events: none;
}

@keyframes uc-map-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Profile Polish */
.profile-interest-tag {
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s;
  cursor: help;
}
.profile-interest-tag:hover {
  transform: scale(1.1) rotate(1deg);
  background-color: var(--uc-primary) !important;
  color: var(--uc-text-on-primary) !important;
}

#profile-porch-list > div {
  transition: transform 0.2s ease, background-color 0.2s;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
#profile-porch-list > div:hover {
  transform: translateX(4px);
  background-color: var(--uc-primary-wash);
}
#profile-porch-list > div:active {
  transform: scale(0.98);
}

/* Latency-aware Pulses */
.uc-pulse-latency-low { animation: uc-pulse-green 4s infinite !important; }
.uc-pulse-latency-mid { animation: uc-pulse-green 1.5s infinite !important; }
.uc-pulse-latency-high { animation: uc-pulse-green 0.6s infinite !important; }


