@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600&family=Fira+Code:wght@400;500;600;700&display=swap');

:root {
  /* Content layers */
  --z-content-low: 10;
  --z-content: 20;
  --z-content-high: 30;

  /* Navigation layers */
  --z-nav-low: 100;
  --z-nav: 200;
  --z-nav-sticky: 300;

  /* Overlay layers */
  --z-overlay: 1000;
  --z-spotlight: 1000;

  /* System layers */
  --z-critical: 2000;

  /* Navigation dimensions */
  --top-nav-height: 56px;
  --bottom-nav-height: 64px;

  /* Spacing Scale */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;

  /* Legacy spacing aliases */
  --negus-spacing-xs: var(--spacing-1);
  --negus-spacing-sm: var(--spacing-2);
  --negus-spacing-md: var(--spacing-3);
  --negus-spacing-lg: var(--spacing-4);
  --negus-spacing-xl: var(--spacing-6);

  /* Negus Parent Palette */
  --negus-ink: #1a1410;
  --negus-dark: #2c2218;
  --negus-sand: #c9a97a;
  --negus-parchment: #f5f0e8;
  --negus-ink-60: rgba(26,20,16,.6);
  --negus-ink-20: rgba(26,20,16,.12);

  /* Light Mode Colors */
  --background: var(--negus-parchment);
  --foreground: var(--negus-ink);

  --surface: var(--negus-parchment);
  --surface-foreground: var(--negus-ink);
  --sidebar: var(--negus-parchment);
  --sidebar-foreground: var(--negus-ink);
  --card: var(--negus-parchment);
  --card-foreground: var(--negus-ink);
  --popup: var(--negus-parchment);
  --popup-foreground: var(--negus-ink);

  --primary: hsl(244, 75%, 37%);
  --primary-foreground: var(--negus-parchment);
  
  --secondary: var(--negus-ink-20);
  --secondary-foreground: var(--negus-ink);
  --accent: var(--negus-ink-20);
  --accent-foreground: var(--negus-ink);

  --muted: rgba(26,20,16,0.06);
  --muted-foreground: rgba(26,20,16,0.78);

  --success: hsl(140 60% 40%);
  --success-foreground: var(--negus-parchment);
  --error: hsl(0 80% 60%);
  --error-foreground: var(--negus-parchment);
  --warning: hsl(40 90% 55%);
  --warning-foreground: var(--negus-ink);
  --info: hsl(200 90% 50%);
  --info-foreground: var(--negus-parchment);

  --border: var(--negus-ink-20);

  /* Legacy color aliases */
  --negus-color-primary: var(--primary);
  --negus-color-secondary: var(--surface);
  --negus-color-accent: var(--accent);

  /* Font Families */
  --font-family-base: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-monospace: 'Fira Code', monospace;

  /* Typography Scale */
  --font-size-xs: 9px;
  --font-size-sm: 11px;
  --font-size-base: 14px;
  --font-size-lg: 17px;
  --font-size-xl: 38px;
  --font-size-2xl: 64px;

  /* Border Radius */
  --radius-sm: 2px;
  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* Box Shadows */
  --shadow: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-focus: 0 0 0 2px var(--negus-ink);
}

.dark {
  /* Dark Mode Colors */
  --background: var(--negus-ink);
  --foreground: var(--negus-parchment);

  --surface: var(--negus-dark);
  --surface-foreground: var(--negus-parchment);
  --sidebar: var(--negus-dark);
  --sidebar-foreground: var(--negus-parchment);
  --card: var(--negus-dark);
  --card-foreground: var(--negus-parchment);
  --popup: var(--negus-dark);
  --popup-foreground: var(--negus-parchment);

  --primary: hsl(95 73% 45%);
  --primary-foreground: var(--negus-ink);
  
  --secondary: var(--negus-sand);
  --secondary-foreground: var(--negus-ink);
  --accent: var(--negus-sand);
  --accent-foreground: var(--negus-ink);

  --muted: rgba(245,240,232,0.12);
  --muted-foreground: rgba(245,240,232,0.65);

  --success: hsl(140 60% 40%);
  --success-foreground: var(--negus-parchment);
  --error: hsl(0 70% 55%);
  --error-foreground: var(--negus-parchment);
  --warning: hsl(40 90% 55%);
  --warning-foreground: var(--negus-ink);
  --info: hsl(200 80% 50%);
  --info-foreground: var(--negus-parchment);

  --border: rgba(245,240,232,0.1);

  /* Dark mode shadows */
  --shadow: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-focus: 0 0 0 2px var(--negus-parchment);
}

@layer base {
  * { box-sizing: border-box; padding: 0; margin: 0; }

  /* Global focus-visible baseline for interactive elements without component-level styles */
  :focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }

  body {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  button { border: none; background: none; cursor: pointer; font-family: inherit; font-size: inherit; color: inherit; }
  a { color: inherit; text-decoration: none; }
  ul { list-style-type: none; margin: 0; padding: 0; }
  
  .text-display { font-family: var(--font-family-heading); font-size: var(--font-size-2xl); font-weight: 700; letter-spacing: .04em; line-height: 1; }
  .text-heading { font-family: var(--font-family-heading); font-size: var(--font-size-xl); font-weight: 300; letter-spacing: .02em; line-height: 1.15; }
  .text-eyebrow { font-family: var(--font-family-heading); font-size: var(--font-size-sm); letter-spacing: .3em; text-transform: uppercase; }
  .text-label { font-family: var(--font-family-base); font-size: var(--font-size-sm); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
}

/* App-Specific Theme Colors */

/* Note: .dark is on <html>, .theme-* is on <body> — use descendant selector (.dark .theme-*) */

.theme-project { --primary: #a06820; --primary-foreground: #ffffff; }

.dark .theme-project { --primary: #e4a24e; --primary-foreground: var(--negus-ink); }

.theme-travel { --primary: #1b4d7a; --primary-foreground: #ffffff; }

.dark .theme-travel { --primary: #4e9de4; --primary-foreground: var(--negus-ink); }

.theme-umrah { --primary: #2d6a4f; --primary-foreground: #ffffff; }

.dark .theme-umrah { --primary: #5dc195; --primary-foreground: var(--negus-ink); }

.theme-news { --primary: #7a3060; --primary-foreground: #ffffff; }

.dark .theme-news { --primary: #cc66a8; --primary-foreground: var(--negus-ink); }

/* PAUSED 2026-04-06: Ansar app paused. Color #1a5050 (teal) freed for reuse.
.theme-ansar { --primary: #1a5050; --primary-foreground: #ffffff; }
.dark .theme-ansar { --primary: #33cccc; --primary-foreground: var(--negus-ink); }
*/

.theme-community { --primary: #4a3060; --primary-foreground: #ffffff; }

.dark .theme-community { --primary: #b088d0; --primary-foreground: var(--negus-ink); }

.theme-work { --primary: #3d5a3e; --primary-foreground: #ffffff; }

.dark .theme-work { --primary: #82b084; --primary-foreground: var(--negus-ink); }

.theme-zakaat { --primary: #5a4a20; --primary-foreground: #ffffff; }

.dark .theme-zakaat { --primary: #d1b261; --primary-foreground: var(--negus-ink); }
/* AppSwitcher — grid overlay for navigating between NEGUS sub-apps.
   Triggered by Grid icon in TopNavigation. Uses CSS Modules per @negus/ui convention. */

@layer base {
  ._overlay_c5m6j_9 {
    position: fixed;
    inset: 0;
    background-color: rgba(26, 20, 16, 0.4);
    z-index: var(--z-overlay);
    animation: _fadeIn_c5m6j_1 var(--animation-duration-fast) ease;
  }

  ._drawer_c5m6j_25 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background-color: var(--card);
    box-shadow: -4px 0 24px rgba(26, 20, 16, 0.12);
    z-index: calc(var(--z-overlay) + 1);
    display: flex;
    flex-direction: column;
    animation: _slideIn_c5m6j_1 var(--animation-duration-normal) ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  ._header_c5m6j_57 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-4);
    border-bottom: 1px solid var(--border);
  }

  ._title_c5m6j_73 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
  }

  ._closeBtn_c5m6j_89 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-full);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted-foreground);
    transition: background-color var(--animation-duration-fast) ease;
  }

  ._closeBtn_c5m6j_89:hover {
    background-color: var(--muted);
  }

  ._grid_c5m6j_125 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3);
    padding: var(--spacing-4);
  }

  ._appCard_c5m6j_139 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4) var(--spacing-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background-color: var(--card);
    text-decoration: none;
    color: var(--foreground);
    transition:
      background-color var(--animation-duration-fast) ease,
      border-color var(--animation-duration-fast) ease,
      transform var(--animation-duration-fast) ease;
    cursor: pointer;
    min-height: 100px;
  }

  ._appCard_c5m6j_139:hover {
    background-color: var(--muted);
    border-color: var(--primary);
    transform: translateY(-1px);
  }

  ._appCard_c5m6j_139._active_c5m6j_189 {
    border-color: var(--primary);
    background-color: rgba(var(--primary-rgb, 26, 77, 122), 0.08);
  }

  ._emoji_c5m6j_199 {
    font-size: 1.75rem;
    line-height: 1;
  }

  ._appName_c5m6j_209 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
  }

  ._appDesc_c5m6j_225 {
    font-size: 0.7rem;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.3;
  }

  @keyframes _fadeIn_c5m6j_1 {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes _slideIn_c5m6j_1 {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
}
@layer base {
  ._avatar_13z8e_3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-full);
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    background-color: var(--muted);
    border: 2px solid var(--card);
    transition: transform var(--animation-duration-normal) ease,
                box-shadow var(--animation-duration-normal) ease;
  }

  ._avatar_13z8e_3:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
  }

  ._avatarImage_13z8e_45 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }

  ._avatarFallback_13z8e_59 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-family: var(--font-family-base);
    font-weight: 500;
    font-size: var(--font-size-sm);
    line-height: 1;
    text-transform: uppercase;
  }
}/* AvatarWithTrust — Double decagon border avatar (Option D).
 * Outer border = app accent color, inner border = tier color, innermost = avatar image.
 * Uses clip-path polygon for decagon shape. */

@layer base {
  ._wrapper_1kk34_11 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: default;
  }

  ._wrapper_1kk34_11[data-clickable="true"] {
    cursor: pointer;
  }

  ._decagon_1kk34_37 {
    clip-path: polygon(
      50% 0%,
      79.4% 9.5%,
      97.6% 34.5%,
      97.6% 65.5%,
      79.4% 90.5%,
      50% 100%,
      20.6% 90.5%,
      2.4% 65.5%,
      2.4% 34.5%,
      20.6% 9.5%
    );
  }

  ._outerBorder_1kk34_67 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  ._innerBorder_1kk34_79 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  ._avatarInner_1kk34_91 {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--muted);
  }

  ._avatarInner_1kk34_91 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  ._fallback_1kk34_119 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted-foreground);
    background-color: var(--muted);
    font-size: 0.45em;
    /* font-size is relative to container via inline style */
  }

  /* Size variants — applied to wrapper, border sizes set via CSS custom props */
  ._sm_1kk34_149 {
    --awt-size: 40px;
    --awt-outer: 2px;
    --awt-inner: 2px;
  }

  ._md_1kk34_161 {
    --awt-size: 56px;
    --awt-outer: 3px;
    --awt-inner: 2px;
  }

  ._lg_1kk34_173 {
    --awt-size: 96px;
    --awt-outer: 4px;
    --awt-inner: 3px;
  }
}
@layer base {
  ._badge_mdt5w_3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    padding: var(--spacing-1) var(--spacing-3);
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 1.25;
    white-space: nowrap;
    transition: background-color var(--animation-duration-fast) ease-in-out;
    cursor: default;
    user-select: none;
  }

  ._default_mdt5w_33 {
    background-color: color-mix(in srgb, var(--primary) 15%, transparent);
    color: var(--primary);
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  }

  ._default_mdt5w_33:hover {
    background-color: color-mix(in srgb, var(--primary) 25%, transparent);
  }

  ._destructive_mdt5w_53 {
    background-color: color-mix(in srgb, var(--error) 15%, transparent);
    color: var(--error);
    border: 1px solid color-mix(in srgb, var(--error) 20%, transparent);
  }

  ._destructive_mdt5w_53:hover {
    background-color: color-mix(in srgb, var(--error) 25%, transparent);
  }

  ._secondary_mdt5w_73 {
    background-color: color-mix(in srgb, var(--secondary) 15%, transparent);
    color: var(--secondary);
    border: 1px solid color-mix(in srgb, var(--secondary) 20%, transparent);
  }

  ._secondary_mdt5w_73:hover {
    background-color: color-mix(in srgb, var(--secondary) 25%, transparent);
  }

  ._outline_mdt5w_93 {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
  }

  ._outline_mdt5w_93:hover {
    background-color: color-mix(in srgb, var(--foreground) 5%, transparent);
  }

  ._success_mdt5w_113 {
    background-color: color-mix(in srgb, var(--success) 15%, transparent);
    color: var(--success);
    border: 1px solid color-mix(in srgb, var(--success) 20%, transparent);
  }

  ._success_mdt5w_113:hover {
    background-color: color-mix(in srgb, var(--success) 25%, transparent);
  }

  ._warning_mdt5w_133 {
    background-color: color-mix(in srgb, var(--warning) 15%, transparent);
    color: var(--warning-foreground);
    border: 1px solid color-mix(in srgb, var(--warning) 20%, transparent);
  }

  ._warning_mdt5w_133:hover {
    background-color: color-mix(in srgb, var(--warning) 25%, transparent);
  }

  /* Gamification Variants */
  ._platinum_mdt5w_155 {
    background-color: #f8fafc;
    color: #475569;
    border: 1px solid #cbd5e1;
    border-radius: 2px;
  }

  ._gold_mdt5w_169 {
    background-color: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
    border-radius: 2px;
  }

  ._silver_mdt5w_183 {
    background-color: #f9fafb;
    color: #4b5563;
    border: 1px solid #d1d5db;
    border-radius: 2px;
  }

  ._bronze_mdt5w_197 {
    background-color: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    border-radius: 2px;
  }
}@layer base {
  ._button_eov2h_3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    font-family: var(--font-family-base);
    font-weight: 500;
    border-radius: var(--radius);
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition:
      background-color var(--animation-duration-fast) ease,
      border-color var(--animation-duration-fast) ease,
      color var(--animation-duration-fast) ease;
    outline: none;
    border: 1px solid transparent;
    position: relative;
  }

  /* Focus styles - high contrast for accessibility */
  ._button_eov2h_3:focus-visible {
    box-shadow: 0 0 0 2px var(--foreground);
    outline: none;
  }

  /* Size variants - ensuring proper touch targets (≥44px per WCAG 2.5.5) */
  ._sm_eov2h_57 {
    height: 2rem;
    min-height: 2rem;
    padding: 0 var(--spacing-2);
    font-size: var(--font-size-sm);
  }

  ._md_eov2h_71 {
    height: 2.75rem;
    padding: 0 var(--spacing-4);
    font-size: var(--font-size-base);
  }

  ._lg_eov2h_83 {
    height: 3rem;
    padding: 0 var(--spacing-4);
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
  }

  /* Icon button sizes — minimum 44×44px touch target per WCAG 2.5.5 */
  ._icon_eov2h_99,
  ._icon-md_eov2h_101 {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
  }

  ._icon-sm_eov2h_113 {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
  }

  ._icon-lg_eov2h_125 {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: var(--radius-md);
  }

  /* Icon sizing */
  ._button_eov2h_3 svg {
    flex-shrink: 0;
    /* Ensure SVGs are block-level inside the flex container so they align
       vertically centered and don't suffer baseline shifts next to text. */
    display: block;
  }

  ._sm_eov2h_57 svg,
  ._icon-sm_eov2h_113 svg {
    width: 1rem;
    height: 1rem;
  }

  ._md_eov2h_71 svg,
  ._icon_eov2h_99 svg,
  ._icon-md_eov2h_101 svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  ._lg_eov2h_83 svg,
  ._icon-lg_eov2h_125 svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Primary - White text on solid brand color (high contrast) */
  ._primary_eov2h_195 {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    --spinner-color: var(--primary-foreground);
  }

  ._primary_eov2h_195:hover {
    background-color: color-mix(in srgb, var(--primary), black 10%);
    border-color: color-mix(in srgb, var(--primary), black 10%);
  }

  ._primary_eov2h_195:active {
    background-color: color-mix(in srgb, var(--primary), black 15%);
    border-color: color-mix(in srgb, var(--primary), black 15%);
  }

  /* Secondary - Secondary color text on very light secondary tint background */
  ._secondary_eov2h_231 {
    background-color: color-mix(in srgb, var(--secondary), white 92%);
    color: var(--secondary);
    border-color: transparent;
    --spinner-color: var(--secondary);
  }

  ._secondary_eov2h_231:hover {
    background-color: color-mix(in srgb, var(--secondary), white 85%);
  }

  ._secondary_eov2h_231:active {
    background-color: color-mix(in srgb, var(--secondary), white 80%);
  }

  /* Destructive - White text on solid red (high contrast) */
  ._destructive_eov2h_263 {
    background-color: var(--error);
    color: var(--error-foreground);
    border-color: var(--error);
    --spinner-color: var(--error-foreground);
  }

  ._destructive_eov2h_263:hover {
    background-color: color-mix(in srgb, var(--error), black 10%);
    border-color: color-mix(in srgb, var(--error), black 10%);
  }

  ._destructive_eov2h_263:active {
    background-color: color-mix(in srgb, var(--error), black 15%);
    border-color: color-mix(in srgb, var(--error), black 15%);
  }

  ._destructive_eov2h_263:focus-visible {
    box-shadow: 0 0 0 2px var(--foreground);
  }

  /* Outline - Brand color text with brand color border, no background */
  ._outline_eov2h_307 {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
    --spinner-color: var(--primary);
  }

  ._outline_eov2h_307:hover {
    background-color: color-mix(in srgb, var(--primary), white 95%);
    border-color: color-mix(in srgb, var(--primary), black 10%);
    color: color-mix(in srgb, var(--primary), black 10%);
  }

  ._outline_eov2h_307:active {
    background-color: color-mix(in srgb, var(--primary), white 90%);
    border-color: color-mix(in srgb, var(--primary), black 15%);
    color: color-mix(in srgb, var(--primary), black 15%);
  }

  /* Ghost - Brand color text only, minimal styling until interaction */
  ._ghost_eov2h_347 {
    background-color: transparent;
    border-color: transparent;
    --spinner-color: var(--primary);
  }

  ._ghost_eov2h_347:hover {
    background-color: color-mix(in srgb, var(--primary), white 95%);
    color: color-mix(in srgb, var(--primary), black 10%);
  }

  ._ghost_eov2h_347:active {
    background-color: color-mix(in srgb, var(--primary), white 90%);
    color: color-mix(in srgb, var(--primary), black 15%);
  }

  /* Link - Brand color text, underline on hover */
  ._link_eov2h_381 {
    background-color: transparent;
    color: var(--primary);
    height: auto;
    padding: 0;
    text-decoration: none;
    border: none;
    border-radius: 0;
    min-height: 2.75rem; /* Ensure touch target height */
    display: inline-flex;
    align-items: center;
    --spinner-color: var(--primary);
  }

  ._link_eov2h_381:hover {
    text-decoration: underline;
    color: color-mix(in srgb, var(--primary), black 10%);
    background-color: transparent;
  }

  ._link_eov2h_381:active {
    color: color-mix(in srgb, var(--primary), black 15%);
    background-color: transparent;
  }

  ._link_eov2h_381:focus-visible {
    box-shadow: 0 0 0 2px var(--primary);
    outline: none;
    border-radius: 0.25rem;
  }

  /* Disabled state */
  ._disabled_eov2h_445 {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* Dark mode */
  ._dark_eov2h_459 ._primary_eov2h_195:focus-visible,
  ._dark_eov2h_459 ._outline_eov2h_307:focus-visible,
  ._dark_eov2h_459 ._ghost_eov2h_347:focus-visible,
  ._dark_eov2h_459 ._destructive_eov2h_263:focus-visible,
  ._dark_eov2h_459 ._link_eov2h_381:focus-visible {
    box-shadow: 0 0 0 2px var(--foreground);
  }
}@layer base {
  ._overlay_1oj2y_3 {
    position: fixed;
    inset: 0;
    background-color: color-mix(in srgb, black 50%, transparent);
    z-index: var(--z-overlay);
    animation: _overlayShow_1oj2y_1 var(--animation-duration-normal)
      cubic-bezier(0.16, 1, 0.3, 1);
  }

  ._content_1oj2y_21 {
    /* This must be fixed, no relative or other positining, otherwise it won't show up properly. */
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 85vh;
    width: 32rem;
    background-color: var(--popup);
    color: var(--popup-foreground);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-overlay);
    overflow: auto;
    padding: var(--spacing-6);
    animation: _contentShow_1oj2y_1 var(--animation-duration-normal)
      cubic-bezier(0.16, 1, 0.3, 1);
  }

  ._close_1oj2y_61 {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-full);
    background-color: var(--muted);
    color: var(--muted-foreground);
    border: none;
    cursor: pointer;
    transition:
      background-color var(--animation-duration-fast) ease,
      color var(--animation-duration-fast) ease,
      transform var(--animation-duration-fast) ease;
  }

  ._close_1oj2y_61:hover {
    background-color: var(--muted-foreground);
    color: var(--muted);
    transform: scale(1.05);
  }

  ._close_1oj2y_61:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
  }

  ._closeIcon_1oj2y_123 {
    width: 1rem;
    height: 1rem;
  }

  ._header_1oj2y_133 {
    margin-bottom: var(--spacing-4);
  }

  ._footer_1oj2y_141 {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-2);
    margin-top: var(--spacing-6);
  }

  ._title_1oj2y_155 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--popup-foreground);
    line-height: 1.4;
    margin-bottom: var(--spacing-2);
  }

  ._description_1oj2y_173 {
    font-size: var(--font-size-sm);
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: var(--spacing-4);
  }

  ._screenReaderText_1oj2y_187 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  @keyframes _overlayShow_1oj2y_1 {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes _contentShow_1oj2y_1 {
    from {
      opacity: 0;
      scale: 0.95;
    }
    to {
      opacity: 1;
      scale: 1;
    }
  }
}@layer base {
  ._tabsList_1xmnj_3 {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid var(--muted);
    flex-shrink: 0;
    justify-content: center;
  }

  ._tabsList_1xmnj_3::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  ._tabsTrigger_1xmnj_35 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-base);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--muted-foreground);
    background-color: transparent;
    padding: var(--spacing-3) var(--spacing-4);
    border: none;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    transition: color var(--animation-duration-normal)
      cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
  }

  ._tabsTrigger_1xmnj_35:hover {
    color: var(--foreground);
  }

  ._tabsTrigger_1xmnj_35[data-state="active"] {
    color: var(--primary);
    font-weight: 600;
  }

  /* Modern indicator with better animation */
  ._tabsTrigger_1xmnj_35[data-state="active"]::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    transform-origin: center;
    transition: transform var(--animation-duration-normal)
      cubic-bezier(0.22, 1, 0.36, 1);
    transform: scaleX(1);
  }

  /* Subtle hover indicator */
  ._tabsTrigger_1xmnj_35:not([data-state="active"]):hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: color-mix(
      in srgb,
      var(--muted-foreground) 30%,
      transparent
    );
    transform-origin: center;
    transform: scaleX(0.6);
    transition:
      transform var(--animation-duration-normal) cubic-bezier(0.22, 1, 0.36, 1),
      background-color var(--animation-duration-normal)
        cubic-bezier(0.22, 1, 0.36, 1);
  }

  ._tabsTrigger_1xmnj_35:focus-visible {
    outline: none;
    box-shadow: var(--shadow-focus);
    border-radius: var(--radius-sm);
  }

  ._tabsTrigger_1xmnj_35[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    color: var(--muted-foreground);
  }

  ._tabsContent_1xmnj_187 {
    color: var(--foreground);
    outline: none;
    margin-top: var(--spacing-2);
  }

  ._tabsContent_1xmnj_187[hidden] {
    display: none !important;
  }

  /* Pill style variant - keeping existing variant */
  ._tabsList_1xmnj_3[data-variant="pill"] {
    background-color: var(--surface);
    padding: var(--spacing-2);
    border-radius: var(--radius-full);
    border-bottom: none;
    gap: var(--spacing-1);
  }

  ._tabsList_1xmnj_3[data-variant="pill"] ._tabsTrigger_1xmnj_35 {
    border-radius: var(--radius-full);
    padding: var(--spacing-2) var(--spacing-4);
  }

  ._tabsList_1xmnj_3[data-variant="pill"] ._tabsTrigger_1xmnj_35[data-state="active"] {
    background-color: var(--primary);
    color: var(--primary-foreground);
  }

  ._tabsList_1xmnj_3[data-variant="pill"] ._tabsTrigger_1xmnj_35[data-state="active"]::after {
    display: none;
  }

  /* Dark mode improvements */
  .dark ._tabsTrigger_1xmnj_35[data-state="active"]::after {
    background-color: var(--primary);
  }

  .dark ._tabsTrigger_1xmnj_35:not([data-state="active"]):hover::after {
    background-color: color-mix(
      in srgb,
      var(--muted-foreground) 40%,
      transparent
    );
  }
}/* Friends feature styling - consistent with Source app styling guidelines */

._container_1151g_5 {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-1);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

._tabs_1151g_23 {
  width: 100%;
}

._tabContent_1151g_31 {
  padding-top: var(--spacing-1);
}

._grid_1151g_39 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: var(--spacing-4);
}

._card_1151g_51 {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  padding: var(--spacing-4);
  margin: var(--spacing-1);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition:
    box-shadow var(--animation-duration-fast) ease,
    transform var(--animation-duration-fast) ease;
}

._card_1151g_51:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

._cardInfo_1151g_91 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

._displayNameLink_1151g_105 {
  text-decoration: none;
  color: inherit;
  transition: color var(--animation-duration-fast) ease;
}

._displayNameLink_1151g_105:hover {
  color: var(--primary);
}

._displayName_1151g_105 {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

._xpText_1151g_139 {
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
}

._actionButtons_1151g_149 {
  display: flex;
  gap: var(--spacing-2);
}

._acceptButton_1151g_159 {
  color: var(--success);
}

._acceptButton_1151g_159:hover {
  background-color: color-mix(in srgb, var(--success) 10%, transparent);
}

._rejectButton_1151g_175 {
  color: var(--error);
}

._rejectButton_1151g_175:hover {
  background-color: color-mix(in srgb, var(--error) 10%, transparent);
}

._sectionTitle_1151g_191 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-top: var(--spacing-8);
  margin-bottom: var(--spacing-4);
  padding-bottom: var(--spacing-2);
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
}

._searchBar_1151g_211 {
  position: relative;
  margin-bottom: var(--spacing-6);
}

._searchIcon_1151g_221 {
  position: absolute;
  left: var(--spacing-3);
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  pointer-events: none;
  width: 18px;
  height: 18px;
}

._searchBar_1151g_211 input {
  padding-left: calc(var(--spacing-3) * 2 + 18px);
}

._emptyText_1151g_251 {
  text-align: center;
  padding: var(--spacing-8);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  background-color: var(--surface);
  border-radius: var(--radius-md);
}

._errorText_1151g_269 {
  text-align: center;
  padding: var(--spacing-8);
  font-size: var(--font-size-sm);
  color: var(--error);
  background-color: color-mix(in srgb, var(--error) 10%, transparent);
  border-radius: var(--radius-md);
}

._infoText_1151g_287 {
  text-align: center;
  padding: var(--spacing-4);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  background-color: var(--surface);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-4);
}

/* Skeleton styles */
._skeletonCard_1151g_309 {
  pointer-events: none;
}

._skeletonAvatar_1151g_317 {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
}

._skeletonText_1151g_329 {
  width: 120px;
  height: 20px;
}

._skeletonButton_1151g_339 {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

/* Invite Tab Styles */
._inviteContainer_1151g_353 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  background-color: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: var(--spacing-6);
}

._inviteTitle_1151g_373 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: var(--spacing-2);
  padding-bottom: var(--spacing-2);
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
}

._inviteText_1151g_393 {
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  word-break: break-all;
  margin-bottom: var(--spacing-2);
}

._inviteActions_1151g_407 {
  display: flex;
  gap: var(--spacing-2);
  margin-top: var(--spacing-2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  ._grid_1151g_39 {
    grid-template-columns: 1fr;
  }

  ._container_1151g_5 {
    gap: var(--spacing-4);
  }

  ._card_1151g_51 {
    padding: var(--spacing-3);
  }
}

._drawerContent_1151g_449 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background-color: var(--background);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  border-radius: 0 !important;
  animation: _slideInRight_1151g_1 0.3s ease-out;
}

._drawerScrollArea_1151g_481 {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

@keyframes _slideInRight_1151g_1 {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}@layer base {
  ._skeleton_iktfd_3 {
    position: relative;
    overflow: hidden;
    background-color: var(--muted);
    border-radius: var(--radius);
    width: 100%;
    height: 1rem;
    animation: _pulse_iktfd_1 var(--animation-duration-slow) ease-in-out infinite;
  }

  ._skeleton_iktfd_3::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    animation: _shimmer_iktfd_1 2s infinite;
  }

  @keyframes _pulse_iktfd_1 {
    0% {
      opacity: 0.85;
    }
    50% {
      opacity: 0.65;
    }
    100% {
      opacity: 0.85;
    }
  }

  @keyframes _shimmer_iktfd_1 {
    100% {
      transform: translateX(100%);
    }
  }

  /* Dark mode adjustments */
  .dark ._skeleton_iktfd_3 {
    background-color: var(--muted);
  }

  .dark ._skeleton_iktfd_3::after {
    background-image: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent
    );
  }
}@layer base {
  ._input_1lmy8_3 {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--foreground);
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--spacing-2) var(--spacing-3);
    width: 100%;
    transition:
      border-color var(--animation-duration-fast) ease,
      background-color var(--animation-duration-fast) ease;
    outline: none;
    height: 2.75rem;
  }

  ._input_1lmy8_3::placeholder {
    color: var(--muted-foreground);
    opacity: 0.7;
  }

  ._input_1lmy8_3:hover {
    border-color: var(--primary);
  }

  ._input_1lmy8_3:focus-visible {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
    outline: none;
  }

  ._input_1lmy8_3:disabled {
    background-color: var(--muted);
    color: var(--muted-foreground);
    cursor: not-allowed;
    opacity: 0.75;
  }

  /* Dark mode adjustments */
  .dark ._input_1lmy8_3 {
    background-color: transparent;
  }

  .dark ._input_1lmy8_3:hover {
    border-color: var(--primary);
  }

  .dark ._input_1lmy8_3:focus-visible {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
  }
}/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}
._mutualContainer_8m6xv_1 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 12px;
}

._avatarStack_8m6xv_21 {
    display: flex;
    flex-shrink: 0;
}

._avatar_8m6xv_21 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--background, #fff);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--foreground);
    background: var(--muted, #e5e7eb);
    flex-shrink: 0;
}

._avatar_8m6xv_21:not(:first-child) {
    margin-left: -8px;
}

._avatar_8m6xv_21 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

._textBlock_8m6xv_83 {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

._mainText_8m6xv_97 {
    font-size: 13px;
    font-weight: 500;
    color: var(--foreground);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

._mainText_8m6xv_97 strong {
    font-weight: 600;
}

._degreeBadge_8m6xv_123 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #3b82f6;
}._feedContainer_8e8jv_1 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

._header_8e8jv_15 {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._header_8e8jv_15 h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

._markAllBtn_8e8jv_43 {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
}

._markAllBtn_8e8jv_43:hover {
    text-decoration: underline;
}

._list_8e8jv_69 {
    overflow-y: auto;
    flex: 1;
}

._empty_8e8jv_79 {
    padding: 32px 16px;
    text-align: center;
    color: var(--muted-foreground);
    font-size: 14px;
}

._item_8e8jv_93 {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
    text-align: left;
}

._item_8e8jv_93:last-child {
    border-bottom: none;
}

._item_8e8jv_93:hover {
    background: var(--muted);
}

._unread_8e8jv_127 {
    background: var(--muted);
}

._itemTitle_8e8jv_135 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--foreground);
}

._itemMessage_8e8jv_149 {
    font-size: 13px;
    color: var(--muted-foreground);
    line-height: 1.4;
    margin-bottom: 4px;
}

._itemTime_8e8jv_163 {
    font-size: 11px;
    color: var(--muted-foreground);
}

._unreadDot_8e8jv_173 {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
._container_14er3_1 {
    position: relative;
    display: inline-block;
}

._bellButton_14er3_11 {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: var(--muted-foreground);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

._bellButton_14er3_11:hover {
    background: var(--muted);
    color: var(--primary);
}

._badge_14er3_49 {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--error, #ef4444);
    color: white;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--popup);
}

._dropdown_14er3_85 {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    max-height: 480px;
    background: var(--popup);
    color: var(--popup-foreground);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: _slideDown_14er3_1 0.2s ease-out;
}

@keyframes _slideDown_14er3_1 {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Toast notification container — fixed overlay at the top of the viewport.
 * Renders a stack of toasts that auto-dismiss. Used by ToastProvider.
 * z-index is above bottom-nav (1000) and modals (1100). */

._container_15ni4_9 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  pointer-events: none;
}

._toast_15ni4_37 {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  animation: _slideIn_15ni4_1 0.25s ease-out;
}

._toast_15ni4_37._exiting_15ni4_67 {
  animation: _slideOut_15ni4_1 0.2s ease-in forwards;
}

._icon_15ni4_75 {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

._message_15ni4_87 {
  flex: 1;
  word-break: break-word;
}

._dismiss_15ni4_97 {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  font-size: 16px;
  line-height: 1;
  color: inherit;
}
._dismiss_15ni4_97:hover {
  opacity: 1;
}

/* Variants */
._error_15ni4_129 {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

._success_15ni4_141 {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

._info_15ni4_153 {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

._warning_15ni4_165 {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

@keyframes _slideIn_15ni4_1 {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes _slideOut_15ni4_1 {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
/* ForgotPasswordPage — auth page layout with responsive card design */

._container_1go0w_5 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--spacing-4);
  background-color: var(--background);
  font-family: var(--font-family-base);
}

._card_1go0w_25 {
  width: 100%;
  max-width: 420px;
  padding: var(--spacing-8);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

._heading_1go0w_45 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  margin-bottom: var(--spacing-1);
}

._subtitle_1go0w_63 {
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: var(--spacing-6);
}

._form_1go0w_77 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

._fieldGroup_1go0w_89 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

._label_1go0w_101 {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--foreground);
}

._divider_1go0w_113 {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin: var(--spacing-4) 0;
  color: var(--muted-foreground);
  font-size: var(--font-size-xs);
}

._dividerLine_1go0w_131 {
  flex: 1;
  height: 1px;
  background-color: var(--border);
}

._error_1go0w_143 {
  color: var(--error);
  font-size: var(--font-size-xs);
  text-align: center;
}

._fieldError_1go0w_155 {
  color: var(--error);
  font-size: var(--font-size-xs);
}

._backLink_1go0w_165 {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  color: var(--muted-foreground);
  font-size: var(--font-size-sm);
  text-decoration: none;
  margin-bottom: var(--spacing-6);
}

._backLink_1go0w_165:hover {
  color: var(--foreground);
}

._successContainer_1go0w_193 {
  text-align: center;
  padding: var(--spacing-4) 0;
}

._successIcon_1go0w_203 {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-4);
  color: var(--primary);
}

._successHeading_1go0w_217 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: var(--spacing-2);
}

._successText_1go0w_233 {
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-6);
  line-height: 1.5;
}

._footer_1go0w_247 {
  text-align: center;
  margin-top: var(--spacing-6);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
}

._footerLink_1go0w_261 {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-left: var(--spacing-1);
}

._footerLink_1go0w_261:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  ._card_1go0w_25 {
    border: none;
    box-shadow: none;
    padding: var(--spacing-6) var(--spacing-4);
    background-color: var(--background);
  }
}
/* GoogleSignInButton — styled to match Google's branding guidelines while fitting the Negus design system */

._googleButton_9sqih_5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-3);
  width: 100%;
  padding: var(--spacing-3);
  background-color: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--animation-duration-fast) ease,
              box-shadow var(--animation-duration-fast) ease;
  height: 2.75rem;
}

._googleButton_9sqih_5:hover {
  background-color: var(--muted);
  box-shadow: var(--shadow);
}

._googleButton_9sqih_5:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--primary);
}

._googleButton_9sqih_5:active {
  transform: scale(0.99);
}
/* LoginPage — auth page layout with responsive card design and app branding */

._container_1sxzx_5 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--spacing-4);
  background-color: var(--background);
  font-family: var(--font-family-base);
}

._card_1sxzx_25 {
  width: 100%;
  max-width: 420px;
  padding: var(--spacing-8);
  padding-top: 0;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

._accentStripe_1sxzx_49 {
  height: 4px;
  background: var(--app-accent, var(--primary));
  margin: 0 calc(-1 * var(--spacing-8));
  margin-bottom: var(--spacing-6);
}

._brandSection_1sxzx_63 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-4);
}

._heading_1sxzx_79 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 0;
}

._tagline_1sxzx_97 {
  font-size: var(--font-size-sm);
  color: var(--app-accent, var(--primary));
  text-align: center;
  font-weight: 500;
  margin-bottom: 0;
}

._subtitle_1sxzx_113 {
  font-size: var(--font-size-xs);
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: var(--spacing-4);
}

._form_1sxzx_127 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

._fieldGroup_1sxzx_139 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

._label_1sxzx_151 {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--foreground);
}

._passwordWrapper_1sxzx_163 {
  position: relative;
}

._passwordToggle_1sxzx_171 {
  position: absolute;
  right: var(--spacing-3);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: var(--spacing-1);
  display: flex;
  align-items: center;
}

._divider_1sxzx_199 {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin: var(--spacing-4) 0;
  color: var(--muted-foreground);
  font-size: var(--font-size-xs);
}

._dividerLine_1sxzx_217 {
  flex: 1;
  height: 1px;
  background-color: var(--border);
}

._error_1sxzx_229 {
  color: var(--error);
  font-size: var(--font-size-xs);
  text-align: center;
}

._fieldError_1sxzx_241 {
  color: var(--error);
  font-size: var(--font-size-xs);
}

._footer_1sxzx_251 {
  text-align: center;
  margin-top: var(--spacing-6);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
}

._footerLink_1sxzx_265 {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-left: var(--spacing-1);
}

._footerLink_1sxzx_265:hover {
  text-decoration: underline;
}

._forgotLink_1sxzx_287 {
  font-size: var(--font-size-xs);
  color: var(--primary);
  text-decoration: none;
  text-align: right;
  display: block;
  margin-top: calc(-1 * var(--spacing-2));
}

._forgotLink_1sxzx_287:hover {
  text-decoration: underline;
}

._features_1sxzx_313 {
  list-style: none;
  padding: 0;
  margin: var(--spacing-6) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-4);
}

._feature_1sxzx_313 {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
}

._featureIcon_1sxzx_351 {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* How it works — 3-step onboarding overview */
._howItWorks_1sxzx_363 {
  margin-top: var(--spacing-5);
  border-top: 1px solid var(--border);
  padding-top: var(--spacing-4);
}

._howItWorksTitle_1sxzx_375 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  margin: 0 0 var(--spacing-3);
}

._steps_1sxzx_391 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

._step_1sxzx_391 {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
}

._stepNumber_1sxzx_425 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--app-accent, var(--primary));
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: 600;
  flex-shrink: 0;
}

/* Social proof — community stat line to build trust */
._socialProof_1sxzx_455 {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--app-accent, var(--primary));
  font-weight: 500;
  margin-top: var(--spacing-3);
  padding: var(--spacing-2) var(--spacing-3);
  background: color-mix(in srgb, var(--app-accent, var(--primary)) 8%, transparent);
  border-radius: 8px;
}

/* Trust badges — compact strip of platform trust signals */
._trustStrip_1sxzx_479 {
  display: flex;
  justify-content: center;
  gap: var(--spacing-4);
  margin-top: var(--spacing-5);
  padding-top: var(--spacing-4);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

._trustBadge_1sxzx_499 {
  font-size: var(--font-size-xs);
  color: var(--muted-foreground);
  white-space: nowrap;
}

@media (max-width: 480px) {
  ._card_1sxzx_25 {
    border: none;
    box-shadow: none;
    padding: var(--spacing-6) var(--spacing-4);
    padding-top: 0;
    background-color: var(--background);
  }

  ._accentStripe_1sxzx_49 {
    margin: 0 calc(-1 * var(--spacing-4));
    margin-bottom: var(--spacing-4);
  }

  ._trustStrip_1sxzx_479 {
    gap: var(--spacing-2);
  }
}
/* RegisterPage — auth page layout with responsive card design and app branding */

._container_6j28t_5 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--spacing-4);
  background-color: var(--background);
  font-family: var(--font-family-base);
}

._card_6j28t_25 {
  width: 100%;
  max-width: 420px;
  padding: var(--spacing-8);
  padding-top: 0;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

._accentStripe_6j28t_49 {
  height: 4px;
  background: var(--app-accent, var(--primary));
  margin: 0 calc(-1 * var(--spacing-8));
  margin-bottom: var(--spacing-6);
}

._brandSection_6j28t_63 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2);
  margin-bottom: var(--spacing-4);
}

._heading_6j28t_79 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 0;
}

._tagline_6j28t_97 {
  font-size: var(--font-size-sm);
  color: var(--app-accent, var(--primary));
  text-align: center;
  font-weight: 500;
  margin-bottom: 0;
}

._subtitle_6j28t_113 {
  font-size: var(--font-size-xs);
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: var(--spacing-4);
}

._form_6j28t_127 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

._fieldGroup_6j28t_139 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

._label_6j28t_151 {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--foreground);
}

._passwordWrapper_6j28t_163 {
  position: relative;
}

._passwordToggle_6j28t_171 {
  position: absolute;
  right: var(--spacing-3);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: var(--spacing-1);
  display: flex;
  align-items: center;
}

._divider_6j28t_199 {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin: var(--spacing-4) 0;
  color: var(--muted-foreground);
  font-size: var(--font-size-xs);
}

._dividerLine_6j28t_217 {
  flex: 1;
  height: 1px;
  background-color: var(--border);
}

._error_6j28t_229 {
  color: var(--error);
  font-size: var(--font-size-xs);
  text-align: center;
}

._fieldError_6j28t_241 {
  color: var(--error);
  font-size: var(--font-size-xs);
}

._footer_6j28t_251 {
  text-align: center;
  margin-top: var(--spacing-6);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
}

._footerLink_6j28t_265 {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-left: var(--spacing-1);
}

._footerLink_6j28t_265:hover {
  text-decoration: underline;
}

._legalText_6j28t_287 {
  font-size: var(--font-size-xs);
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

._legalText_6j28t_287 a {
  color: var(--primary);
  text-decoration: none;
}

._legalText_6j28t_287 a:hover {
  text-decoration: underline;
}

._strengthBar_6j28t_321 {
  height: 4px;
  border-radius: 2px;
  background-color: var(--muted);
  margin-top: var(--spacing-1);
  overflow: hidden;
}

._strengthFill_6j28t_337 {
  height: 100%;
  border-radius: 2px;
  transition: width var(--animation-duration-fast) ease, background-color var(--animation-duration-fast) ease;
}

._strengthLabel_6j28t_349 {
  font-size: var(--font-size-xs);
  margin-top: var(--spacing-1);
}

/* Trust badges — compact strip of platform trust signals */
._trustStrip_6j28t_361 {
  display: flex;
  justify-content: center;
  gap: var(--spacing-4);
  margin-top: var(--spacing-5);
  padding-top: var(--spacing-4);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

._trustBadge_6j28t_381 {
  font-size: var(--font-size-xs);
  color: var(--muted-foreground);
  white-space: nowrap;
}

@media (max-width: 480px) {
  ._card_6j28t_25 {
    border: none;
    box-shadow: none;
    padding: var(--spacing-6) var(--spacing-4);
    padding-top: 0;
    background-color: var(--background);
  }

  ._accentStripe_6j28t_49 {
    margin: 0 calc(-1 * var(--spacing-4));
    margin-bottom: var(--spacing-4);
  }

  ._trustStrip_6j28t_361 {
    gap: var(--spacing-2);
  }
}
/* ResetPasswordPage — auth page layout with responsive card design */

._container_1afl2_5 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--spacing-4);
  background-color: var(--background);
  font-family: var(--font-family-base);
}

._card_1afl2_25 {
  width: 100%;
  max-width: 420px;
  padding: var(--spacing-8);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

._heading_1afl2_45 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  text-align: center;
  margin-bottom: var(--spacing-1);
}

._subtitle_1afl2_63 {
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: var(--spacing-6);
}

._form_1afl2_77 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

._fieldGroup_1afl2_89 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

._label_1afl2_101 {
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--foreground);
}

._passwordWrapper_1afl2_113 {
  position: relative;
}

._passwordToggle_1afl2_121 {
  position: absolute;
  right: var(--spacing-3);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: var(--spacing-1);
  display: flex;
  align-items: center;
}

._error_1afl2_149 {
  color: var(--error);
  font-size: var(--font-size-xs);
  text-align: center;
}

._fieldError_1afl2_161 {
  color: var(--error);
  font-size: var(--font-size-xs);
}

._hint_1afl2_171 {
  font-size: var(--font-size-xs);
  color: var(--muted-foreground);
  margin-top: var(--spacing-1);
}

._successContainer_1afl2_183 {
  text-align: center;
  padding: var(--spacing-4) 0;
}

._successIcon_1afl2_193 {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-4);
  color: var(--primary);
}

._successHeading_1afl2_207 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: var(--spacing-4);
}

._errorContainer_1afl2_223 {
  text-align: center;
  padding: var(--spacing-4) 0;
}

._errorHeading_1afl2_233 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: var(--spacing-2);
}

._errorText_1afl2_249 {
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-6);
  line-height: 1.5;
}

._footer_1afl2_263 {
  text-align: center;
  margin-top: var(--spacing-6);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
}

._footerLink_1afl2_277 {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  margin-left: var(--spacing-1);
}

._footerLink_1afl2_277:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  ._card_1afl2_25 {
    border: none;
    box-shadow: none;
    padding: var(--spacing-6) var(--spacing-4);
    background-color: var(--background);
  }
}
/* Learn component styling - consistent with Source app styling guidelines */

._container_zja7b_5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-4);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

._title_zja7b_23 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
  text-align: center;
}

/* Page-level heading — identical to .title but separate so card .title */
/* (on CourseCard) doesn't accidentally inherit page-level overrides.    */
._pageTitle_zja7b_43 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
  text-align: center;
}

/* Section heading shown above app-specific or Negus course groups */
._sectionHeader_zja7b_61 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

._sectionTitle_zja7b_73 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

._sectionSubtitle_zja7b_87 {
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  margin: 0;
}

/* Visual separator between the app section and the Negus section */
._sectionDivider_zja7b_101 {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--spacing-2) 0;
}

._grid_zja7b_113 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--spacing-4);
}

._card_zja7b_125 {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition:
    box-shadow var(--animation-duration-fast) ease,
    transform var(--animation-duration-fast) ease;
  cursor: pointer;
  overflow: hidden;
}

._card_zja7b_125:hover:not(._disabled_zja7b_149) {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

._disabled_zja7b_149 {
  opacity: 0.6;
  cursor: not-allowed;
}

._image_zja7b_171 {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

._content_zja7b_183 {
  padding: var(--spacing-4);
}

._title_zja7b_23 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 var(--spacing-2) 0;
}

._description_zja7b_205 {
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
  margin: 0 0 var(--spacing-2) 0;
  line-height: 1.4;
}

._completed_zja7b_219,
._locked_zja7b_221 {
  font-size: var(--font-size-xs);
  font-weight: 500;
  padding: var(--spacing-1) var(--spacing-2);
  border-radius: var(--radius-sm);
  display: inline-block;
}

._completed_zja7b_219 {
  background-color: var(--success);
  color: white;
}

._locked_zja7b_221 {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

._mandatory_zja7b_257 {
  background-color: #f59e0b;
  /* Amber/Gold */
  color: white;
  margin-right: var(--spacing-2);
}

._xpBadge_zja7b_271 {
  background-color: var(--primary);
  color: white;
  margin-left: auto;
}

._footer_zja7b_283 {
  display: flex;
  align-items: center;
  margin-top: var(--spacing-2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  ._grid_zja7b_113 {
    grid-template-columns: 1fr;
  }

  ._container_zja7b_5 {
    padding: var(--spacing-2);
  }

  ._content_zja7b_183 {
    padding: var(--spacing-3);
  }
}._playerContainer_65bpj_1 {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #0f172a;
  /* Deep dark blue for premium feel */
  color: #f8fafc;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

._header_65bpj_33 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), transparent);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

._headerLeft_65bpj_59 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

._courseTitle_65bpj_71 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  opacity: 0.8;
}

._progressBarContainer_65bpj_93 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
}

._progressBar_65bpj_93 {
  height: 100%;
  background: linear-gradient(to right, #38bdf8, #818cf8);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

._lessonContent_65bpj_125 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow-y: auto;
  margin-top: 60px;
  margin-bottom: 80px;
}

._lessonInner_65bpj_147 {
  max-width: 900px;
  width: 100%;
  animation: _fadeInSlideUp_65bpj_1 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes _fadeInSlideUp_65bpj_1 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

._textContent_65bpj_183 {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #f1f5f9;
  font-weight: 300;
  text-align: center;
}

._textContent_65bpj_183 h1,
._textContent_65bpj_183 h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(to bottom right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

._mediaContainer_65bpj_223 {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: #1e293b;
}

._imageContent_65bpj_239 {
  width: 100%;
  height: auto;
  display: block;
}

._videoWrapper_65bpj_251 {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

._questionContainer_65bpj_263 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}

._questionText_65bpj_277 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

._optionsGrid_65bpj_289 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

._optionButton_65bpj_305 {
  background: #1e293b !important;
  border: 1px solid #334155 !important;
  color: #94a3b8 !important;
  font-size: 1.1rem !important;
  padding: 1.5rem !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

._optionButton_65bpj_305:hover:not(:disabled) {
  border-color: #38bdf8 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

._correctOption_65bpj_339 {
  background: linear-gradient(to bottom right, #22c55e, #15803d) !important;
  border-color: #4ade80 !important;
  color: #ffffff !important;
}

._incorrectOption_65bpj_351 {
  background: linear-gradient(to bottom right, #ef4444, #b91c1c) !important;
  border-color: #f87171 !important;
  color: #ffffff !important;
}

._completionContainer_65bpj_363 {
  text-align: center;
  padding: 2rem;
}

._completionTitle_65bpj_373 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fcd34d, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

._footer_65bpj_391 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

._progressIndicator_65bpj_417 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #64748b;
  letter-spacing: 0.1em;
}

._navButton_65bpj_431 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

._navButton_65bpj_431:hover:not(:disabled) {
  transform: translateX(5px);
}

/* Skeletons */
._contentSkeleton_65bpj_461 {
  background: #1e293b;
  border-radius: 12px;
}

@media (max-width: 768px) {
  ._optionsGrid_65bpj_289 {
    grid-template-columns: 1fr;
  }

  ._textContent_65bpj_183 h1 {
    font-size: 2rem;
  }

  ._completionTitle_65bpj_373 {
    font-size: 3rem;
  }

  ._questionText_65bpj_277 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  ._textContent_65bpj_183 {
    font-size: 1.1rem;
  }

  ._textContent_65bpj_183 h1,
  ._textContent_65bpj_183 h2 {
    font-size: 1.5rem;
  }

  ._questionText_65bpj_277 {
    font-size: 1.25rem;
  }

  ._completionTitle_65bpj_373 {
    font-size: 2.5rem;
  }

  ._footer_65bpj_391 {
    padding: 1rem;
  }

  ._header_65bpj_33 {
    padding: 0.75rem 1rem;
  }
}._container_tdud8_1 {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 400px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 9999;
  padding: 16px;
  animation: _slideUp_tdud8_1 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

._content_tdud8_33 {
  display: flex;
  align-items: center;
  gap: 16px;
}

._iconContainer_tdud8_45 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--muted);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

._icon_tdud8_45 {
  color: var(--primary);
}

._textContainer_tdud8_75 {
  flex-grow: 1;
}

._title_tdud8_83 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
}

._description_tdud8_99 {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

._actions_tdud8_111 {
  display: flex;
  align-items: center;
  gap: 8px;
}

._installButton_tdud8_123 {
  white-space: nowrap;
}

._closeButton_tdud8_131 {
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
  transition: color 0.2s;
}

._closeButton_tdud8_131:hover {
  color: var(--foreground);
}

/* iOS Specific */
._iosContainer_tdud8_165 {
  position: fixed;
  bottom: 80px; /* Above standard bottom nav */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 400px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  padding: 12px 16px;
  animation: _slideUp_tdud8_1 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

._iosContainer_tdud8_165::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--card);
}

._iosContent_tdud8_219 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

._iosText_tdud8_231 {
  margin: 0;
  font-size: 0.875rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

._inlineIcon_tdud8_251 {
  color: var(--primary);
  margin: 0 2px;
}

@keyframes _slideUp_tdud8_1 {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
._container_jykvb_1 {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: calc(100% - 48px);
  max-width: 380px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 9999;
  padding: 16px;
  animation: _slideIn_jykvb_1 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 768px) {
  ._container_jykvb_1 {
    bottom: 24px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 32px);
  }
}

._content_jykvb_49 {
  display: flex;
  align-items: center;
  gap: 16px;
}

._iconContainer_jykvb_61 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--muted);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

._icon_jykvb_61 {
  color: var(--primary);
  animation: _spin_jykvb_1 3s linear infinite;
}

._textContainer_jykvb_93 {
  flex-grow: 1;
}

._title_jykvb_101 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
}

._description_jykvb_117 {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

._actions_jykvb_129 {
  display: flex;
  align-items: center;
  gap: 8px;
}

._updateButton_jykvb_141 {
  white-space: nowrap;
}

._closeButton_jykvb_149 {
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
  transition: color 0.2s;
}

._closeButton_jykvb_149:hover {
  color: var(--foreground);
}

@keyframes _slideIn_jykvb_1 {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  @keyframes _slideIn_jykvb_1 {
    from {
      opacity: 0;
      transform: translate(50%, 20px);
    }
    to {
      opacity: 1;
      transform: translate(50%, 0);
    }
  }
}

@keyframes _spin_jykvb_1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
._skeleton_igop7_1 {
  height: 2.5rem;
  width: 100%;
  background-color: var(--muted);
  border-radius: var(--radius-md);
  animation: _pulse_igop7_1 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes _pulse_igop7_1 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
._container_as1mf_1 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 100px 0; /* Space for bottom nav */
}

._heroImageContainer_as1mf_13 {
  width: 100%;
  height: 400px;
  position: relative;
  background-color: var(--card);
  overflow: hidden;
}

@media (max-width: 768px) {
  ._heroImageContainer_as1mf_13 {
    height: 250px;
  }
}

._heroImage_as1mf_13 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

._heroFallback_as1mf_53 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--muted);
  color: var(--muted-foreground);
}

._contentGrid_as1mf_73 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

@media (max-width: 768px) {
  ._contentGrid_as1mf_73 {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}

._mainContent_as1mf_101 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

._header_as1mf_113 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

._title_as1mf_125 {
  margin: 0;
  font-size: clamp(1.25rem, 5vw, 2rem);
  color: var(--foreground);
}

._locationContainer_as1mf_137 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 1rem;
}

._hostSummary_as1mf_153 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

._hostInfo_as1mf_169 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

._hostText_as1mf_181 h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--foreground);
}

._hostText_as1mf_181 p {
  margin: 0.25rem 0 0 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

._avatar_as1mf_205 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

._avatarFallback_as1mf_219 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

._featuresList_as1mf_245 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

._featureItem_as1mf_261 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

._featureIcon_as1mf_273 {
  color: var(--primary);
  flex-shrink: 0;
}

._featureText_as1mf_283 {
  display: flex;
  flex-direction: column;
}

._featureLabel_as1mf_293 {
  font-weight: 500;
  color: var(--foreground);
}

._featureValue_as1mf_303 {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

._descriptionSection_as1mf_313 h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

._description_as1mf_313 {
  color: var(--foreground);
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Sidebar / Action Bar */
._sidebar_as1mf_337 {
  position: sticky;
  top: 100px;
  height: fit-content;
}

._actionCard_as1mf_349 {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

._actionHeader_as1mf_371 h3 {
  margin: 0;
  font-size: 1.25rem;
}

._actionButton_as1mf_381 {
  width: 100%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

._actionButton_as1mf_381:hover {
  opacity: 0.9;
}

._trustSafetyInfo_as1mf_415 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

._trustItem_as1mf_431 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Loading State */
._loadingContainer_as1mf_449 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
  gap: 1rem;
  color: var(--muted-foreground);
}

._spinner_as1mf_469 {
  animation: _spin_as1mf_469 1s linear infinite;
}

@keyframes _spin_as1mf_469 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

._errorContainer_as1mf_487 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
  gap: 1rem;
  color: var(--destructive);
}
/* Badges tab displaying user's earned badges with visibility management and filtering */

._badgesTabContainer_1istc_5 {
  padding: var(--spacing-6);
}

._filterSection_1istc_13 {
  display: flex;
  align-items: center;
  gap: var(--spacing-6);
  margin-bottom: var(--spacing-8);
  flex-wrap: wrap;
}

._filterLabel_1istc_29 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--foreground);
}

._filterButtons_1istc_47 {
  display: flex;
  gap: var(--spacing-3);
  flex-wrap: wrap;
}

._filterButton_1istc_47 {
  padding: var(--spacing-2) var(--spacing-6);
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

._filterButton_1istc_47:hover {
  border-color: var(--primary);
  color: var(--primary);
}

._filterButton_1istc_47._active_1istc_93 {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(59, 130, 246, 0.8) 100%);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

._badgesGrid_1istc_107 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-14);
  animation: _fadeIn_1istc_1 0.3s ease;
  justify-content: center;
  padding: var(--spacing-8) 0;
}

@keyframes _fadeIn_1istc_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hexagonal badge using pseudo-elements for 3D effect */
._badgeCard_1istc_145 {
  position: relative;
  margin: var(--spacing-6) var(--spacing-8);
  width: 120px;
  height: 180px;
  border-radius: 20px;
  display: inline-block;
  top: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Create the 3D hexagon effect with pseudo-elements */
._badgeCard_1istc_145::before,
._badgeCard_1istc_145::after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

._badgeCard_1istc_145::before {
  transform: rotate(60deg);
  z-index: 1;
}

._badgeCard_1istc_145::after {
  transform: rotate(-60deg);
  z-index: 1;
}

._badgeCard_1istc_145::before {
  transform: rotate(60deg);
  z-index: 1;
}

._badgeCard_1istc_145::after {
  transform: rotate(-60deg);
  z-index: 1;
}

._badgeCard_1istc_145:hover:not(._hidden_1istc_241) {
  top: -8px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

._badgeCard_1istc_145._hidden_1istc_241 {
  opacity: 0.4;
}

._badgeCard_1istc_145._hidden_1istc_241:hover {
  top: 0;
}

/* Badge content wrapper positioned above hexagon */
._badgeHeader_1istc_269 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  top: 0;
  left: 0;
}

._badgeIcon_1istc_295 {
  width: 80px;
  height: 80px;
  position: absolute;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 11;
}

._rarityBadge_1istc_329 {
  display: none;
}

._badgeContent_1istc_337 {
  display: none;
}

._badgeName_1istc_345 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  z-index: 12;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: white;
  text-align: center;
  background: linear-gradient(to bottom right, rgba(80, 80, 80, 0.9) 0%, rgba(50, 50, 50, 0.9) 100%);
  padding: var(--spacing-2) var(--spacing-2);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0;
}

._badgeDescription_1istc_391 {
  display: none;
}

._badgeDate_1istc_399 {
  display: none;
}

._badgeFooter_1istc_407 {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 13;
  display: flex;
  gap: var(--spacing-2);
}

._hiddenLabel_1istc_425 {
  display: none;
}

._toggleButton_1istc_433 {
  background: none;
  border: none;
  padding: var(--spacing-2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  background-color: rgba(0, 0, 0, 0.3);
}

._toggleButton_1istc_433:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

._toggleButton_1istc_433:active {
  transform: scale(0.95);
}

/* Color variations for badges */
._badgeCard_1istc_145 {
  background: linear-gradient(to bottom right, #e0e0e0 0%, #bdbdbd 100%);
  color: #9e9e9e;
}

._badgeCard_1istc_145._rarity-gold_1istc_491 {
  background: linear-gradient(to bottom right, #e6ce6a 0%, #b7892b 100%);
  color: #b7892b;
}

._badgeCard_1istc_145._rarity-silver_1istc_501 {
  background: linear-gradient(to bottom right, #e0e0e0 0%, #bdbdbd 100%);
  color: #9e9e9e;
}

._badgeCard_1istc_145._rarity-bronze_1istc_511 {
  background: linear-gradient(to bottom right, #cd7f32 0%, #8b4513 100%);
  color: #8b4513;
}

._badgeCard_1istc_145._rarity-platinum_1istc_521 {
  background: linear-gradient(to bottom right, #e5e5e5 0%, #c0c0c0 100%);
  color: #a8a9ad;
}

/* Additional color themes for badge types */
._badgeCard_1istc_145._theme-yellow_1istc_533 {
  background: linear-gradient(to bottom right, #ffeb3b 0%, #fbc02d 100%);
  color: #ffb300;
}

._badgeCard_1istc_145._theme-orange_1istc_543 {
  background: linear-gradient(to bottom right, #ffc107 0%, #f57c00 100%);
  color: #f68401;
}

._badgeCard_1istc_145._theme-pink_1istc_553 {
  background: linear-gradient(to bottom right, #f48fb1 0%, #d81b60 100%);
  color: #dc306f;
}

._badgeCard_1istc_145._theme-red_1istc_563 {
  background: linear-gradient(to bottom right, #f4511e 0%, #b71c1c 100%);
  color: #c62828;
}

._badgeCard_1istc_145._theme-purple_1istc_573 {
  background: linear-gradient(to bottom right, #ab47bc 0%, #4527a0 100%);
  color: #7127a8;
}

._badgeCard_1istc_145._theme-teal_1istc_583 {
  background: linear-gradient(to bottom right, #4db6ac 0%, #00796b 100%);
  color: #34a297;
}

._badgeCard_1istc_145._theme-blue_1istc_593 {
  background: linear-gradient(to bottom right, #4fc3f7 0%, #2196f3 100%);
  color: #259af3;
}

._badgeCard_1istc_145._theme-blue-dark_1istc_603 {
  background: linear-gradient(to bottom right, #1976d2 0%, #283593 100%);
  color: #1c68c5;
}

._badgeCard_1istc_145._theme-green_1istc_613 {
  background: linear-gradient(to bottom right, #cddc39 0%, #8bc34a 100%);
  color: #7cb342;
}

._badgeCard_1istc_145._theme-green-dark_1istc_623 {
  background: linear-gradient(to bottom right, #4caf50 0%, #1b5e20 100%);
  color: #00944a;
}

._loadingState_1istc_633,
._errorState_1istc_635 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-12);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

._loadingState_1istc_633 p,
._errorState_1istc_635 p {
  font-size: var(--font-size-base);
  color: var(--muted-foreground);
  margin: 0;
}

._retryButton_1istc_673 {
  margin-top: var(--spacing-6);
  padding: var(--spacing-3) var(--spacing-8);
  background: linear-gradient(135deg, var(--primary) 0%, rgba(59, 130, 246, 0.8) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

._retryButton_1istc_673:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

._retryButton_1istc_673:active {
  transform: translateY(0);
}

._emptyState_1istc_719 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-12);
  text-align: center;
}

._emptyIcon_1istc_737 {
  font-size: 80px;
  margin-bottom: var(--spacing-6);
  filter: opacity(0.7);
}

._emptyTitle_1istc_749 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 var(--spacing-3) 0;
}

._emptyDescription_1istc_765 {
  font-size: var(--font-size-base);
  color: var(--muted-foreground);
  margin: 0;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 400;
}

/* Mobile responsive design */
@media (max-width: 900px) {
  ._badgeCard_1istc_145 {
    width: 100px;
    height: 150px;
    margin: var(--spacing-4) var(--spacing-6);
  }

  ._badgeIcon_1istc_295 {
    width: 65px;
    height: 65px;
    font-size: 32px;
  }

  ._badgeName_1istc_345 {
    width: 90px;
    font-size: 10px;
    bottom: 16px;
  }
}

@media (max-width: 640px) {
  ._badgesTabContainer_1istc_5 {
    padding: var(--spacing-4);
  }

  ._badgesGrid_1istc_107 {
    gap: var(--spacing-6);
    padding: var(--spacing-4) 0;
  }

  ._badgeCard_1istc_145 {
    width: 85px;
    height: 130px;
    margin: var(--spacing-3) var(--spacing-4);
  }

  ._badgeIcon_1istc_295 {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }

  ._badgeName_1istc_345 {
    width: 75px;
    font-size: 9px;
    bottom: 14px;
    padding: var(--spacing-1);
  }

  ._filterSection_1istc_13 {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-4);
  }

  ._filterButtons_1istc_47 {
    width: 100%;
    justify-content: flex-start;
  }
}
._container_4kkhg_1 {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--spacing-6);
  padding-bottom: var(--spacing-12);
}

._backButton_4kkhg_15 {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: var(--spacing-4);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  cursor: pointer;
}

._backButton_4kkhg_15:hover {
  color: var(--text-primary);
}

._card_4kkhg_49 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6);
  margin-bottom: var(--spacing-4);
}

._statusRow_4kkhg_65 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-4);
}

._statusBadge_4kkhg_79 {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
}

._statusPending_4kkhg_95 { background: #fef3c7; color: #92400e; }
._statusAccepted_4kkhg_97 { background: #dcfce7; color: #166534; }
._statusDeclined_4kkhg_99 { background: #fee2e2; color: #991b1b; }
._statusCompleted_4kkhg_101 { background: #dbeafe; color: #1e40af; }
._statusCancelled_4kkhg_103 { background: #f3f4f6; color: #6b7280; }

._date_4kkhg_107 {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
}

._userRow_4kkhg_117 {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin-bottom: var(--spacing-4);
}

._avatar_4kkhg_131 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
}

._userInfo_4kkhg_147 {
  flex: 1;
}

._userName_4kkhg_155 {
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--text-primary);
}

._userRole_4kkhg_167 {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
}

._detailRow_4kkhg_177 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-2);
}

._sectionTitle_4kkhg_195 {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-3);
}

._messageBubble_4kkhg_209 {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-4);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--spacing-3);
}

._messageAuthor_4kkhg_231 {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-1);
}

._actions_4kkhg_245 {
  display: flex;
  gap: var(--spacing-3);
  flex-wrap: wrap;
}

._actionButton_4kkhg_257 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s;
}

._actionButton_4kkhg_257:hover {
  background: var(--background);
}

._actionButtonPrimary_4kkhg_295 {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

._actionButtonPrimary_4kkhg_295:hover {
  opacity: 0.9;
}

._actionButtonDanger_4kkhg_317 {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}

._actionButtonDanger_4kkhg_317:hover {
  opacity: 0.9;
}

._loadingContainer_4kkhg_339 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-12);
  gap: var(--spacing-4);
}

._spinner_4kkhg_357 {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--app-accent, #2563eb);
  border-radius: 50%;
  animation: _spin_4kkhg_357 0.8s linear infinite;
}

@keyframes _spin_4kkhg_357 {
  to { transform: rotate(360deg); }
}
._card_9264q_1 {
  background: white;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

._card_9264q_1:hover {
  border-color: var(--border-hover, #d1d5db);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

._cardHeader_9264q_27 {
  padding: var(--spacing-4);
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  background-color: var(--bg-secondary, #f9fafb);
}

._titleSection_9264q_39 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-3);
}

._title_9264q_39 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

._statusBadge_9264q_67 {
  display: inline-block;
  padding: var(--spacing-1) var(--spacing-3);
  border-radius: 12px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

._cardContent_9264q_87 {
  padding: var(--spacing-4);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

._section_9264q_101 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

._sectionTitle_9264q_113 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-primary);
}

._sectionTitle_9264q_113 svg {
  color: var(--text-secondary);
}

._dateRange_9264q_139 {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

._dateRange_9264q_139>div {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
}

._dateLabel_9264q_163 {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  margin: 0;
}

._dateValue_9264q_175 {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

._separator_9264q_189 {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

._message_9264q_201 {
  background-color: var(--bg-secondary, #f9fafb);
  padding: var(--spacing-3);
  border-radius: 6px;
  border-left: 3px solid var(--primary-color, #3b82f6);
}

._messageLabel_9264q_215 {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 var(--spacing-1) 0;
}

._messageText_9264q_229 {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
  word-wrap: break-word;
}

._timestamps_9264q_245 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  padding-top: var(--spacing-2);
  border-top: 1px solid var(--border-color, #e5e7eb);
}

._cardFooter_9264q_265 {
  padding: var(--spacing-4);
  background-color: var(--bg-secondary, #f9fafb);
  border-top: 1px solid var(--border-color, #e5e7eb);
}

._errorText_9264q_277 {
  color: var(--color-error, #ef4444);
  font-size: var(--font-size-sm);
  margin: 0 0 var(--spacing-3) 0;
}

._actions_9264q_289 {
  display: flex;
  gap: var(--spacing-3);
  flex-wrap: wrap;
}

/* Button Styles */
._acceptButton_9264q_303,
._declineButton_9264q_305,
._cancelButton_9264q_307,
._completeButton_9264q_309,
._reviewButton_9264q_311 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  border: none;
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

._acceptButton_9264q_303 {
  background-color: #10b981;
  color: white;
}

._acceptButton_9264q_303:hover:not(:disabled) {
  background-color: #059669;
}

._declineButton_9264q_305 {
  background-color: #ef4444;
  color: white;
}

._declineButton_9264q_305:hover:not(:disabled) {
  background-color: #dc2626;
}

._cancelButton_9264q_307 {
  background-color: var(--border-color, #e5e7eb);
  color: var(--text-primary);
}

._cancelButton_9264q_307:hover:not(:disabled) {
  background-color: var(--border-hover, #d1d5db);
}

._completeButton_9264q_309 {
  background-color: #3b82f6;
  color: white;
}

._completeButton_9264q_309:hover:not(:disabled) {
  background-color: #2563eb;
}

._reviewButton_9264q_311 {
  background-color: var(--primary-color, #eab308);
  color: white;
}

._reviewButton_9264q_311:hover:not(:disabled) {
  background-color: #ca8a04;
}

._acceptButton_9264q_303:disabled,
._declineButton_9264q_305:disabled,
._cancelButton_9264q_307:disabled,
._completeButton_9264q_309:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

._spinner_9264q_449 {
  animation: _spin_9264q_449 0.8s linear infinite;
}

@keyframes _spin_9264q_449 {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  ._cardHeader_9264q_27 {
    padding: var(--spacing-3);
  }

  ._cardContent_9264q_87 {
    padding: var(--spacing-3);
    gap: var(--spacing-3);
  }

  ._cardFooter_9264q_265 {
    padding: var(--spacing-3);
  }

  ._titleSection_9264q_39 {
    flex-direction: column;
    align-items: flex-start;
  }

  ._title_9264q_39 {
    font-size: var(--font-size-sm);
  }

  ._dateRange_9264q_139 {
    flex-direction: column;
    gap: var(--spacing-2);
  }

  ._dateRange_9264q_139>div {
    width: 100%;
    flex-direction: row;
    gap: var(--spacing-2);
  }

  ._dateLabel_9264q_163 {
    min-width: 80px;
  }

  ._separator_9264q_189 {
    display: none;
  }

  ._actions_9264q_289 {
    flex-direction: column;
  }

  ._acceptButton_9264q_303,
  ._declineButton_9264q_305,
  ._cancelButton_9264q_307,
  ._completeButton_9264q_309 {
    min-width: 100%;
  }
}._container_1wom3_1 {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--spacing-6);
  padding-bottom: var(--spacing-12);
}

._header_1wom3_15 {
  margin-bottom: var(--spacing-8);
}

._header_1wom3_15 h1 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-2);
  color: var(--text-primary);
}

._subtitle_1wom3_37 {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

._errorBanner_1wom3_47 {
  background-color: var(--color-error-bg, #fee2e2);
  border: 1px solid var(--color-error-border, #fecaca);
  border-radius: 8px;
  padding: var(--spacing-4);
  margin-bottom: var(--spacing-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

._errorBanner_1wom3_47 p {
  color: var(--color-error, #991b1b);
  margin: 0;
  font-size: var(--font-size-sm);
}

._retryButton_1wom3_81 {
  background-color: var(--color-error, #991b1b);
  color: white;
  border: none;
  padding: var(--spacing-2) var(--spacing-4);
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--font-size-xs);
  font-weight: 500;
  white-space: nowrap;
  margin-left: var(--spacing-4);
  transition: background-color 0.2s;
}

._retryButton_1wom3_81:hover {
  background-color: var(--color-error-hover, #7f1d1d);
}

._loadingContainer_1wom3_117 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: var(--spacing-4);
  color: var(--text-secondary);
}

._spinner_1wom3_137 {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-color, #e5e7eb);
  border-top-color: var(--primary-color, #3b82f6);
  border-radius: 50%;
  animation: _spin_1wom3_137 0.8s linear infinite;
}

@keyframes _spin_1wom3_137 {
  to {
    transform: rotate(360deg);
  }
}

._tabsRoot_1wom3_167 {
  width: 100%;
}

._tabsList_1wom3_175 {
  display: flex;
  gap: var(--spacing-1);
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  margin-bottom: var(--spacing-6);
}

._tabsTrigger_1wom3_189 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-4) var(--spacing-4);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
}

._tabsTrigger_1wom3_189:hover {
  color: var(--text-primary);
}

._tabsTrigger_1wom3_189[data-state='active'] {
  color: var(--primary-color, #3b82f6);
  border-bottom-color: var(--primary-color, #3b82f6);
}

._tabLabel_1wom3_239 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

._badge_1wom3_251 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 var(--spacing-1);
  background-color: var(--color-error, #ef4444);
  color: white;
  border-radius: 10px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: 1;
}

._tabContent_1wom3_281 {
  animation: _fadeIn_1wom3_1 0.2s;
}

@keyframes _fadeIn_1wom3_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

._requestsList_1wom3_307 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

._emptyState_1wom3_319 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
  color: var(--text-secondary);
}

._emptyState_1wom3_319 svg {
  color: var(--border-color, #e5e7eb);
  margin-bottom: var(--spacing-4);
}

._emptyState_1wom3_319 h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-2);
  color: var(--text-primary);
}

._emptyState_1wom3_319 p {
  font-size: var(--font-size-sm);
  max-width: 400px;
}

/* Host CTA in received empty state */
._hostCta_1wom3_375 {
  margin-top: var(--spacing-4);
  padding-top: var(--spacing-4);
  border-top: 1px solid var(--border);
}

._hostCtaText_1wom3_387 {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-3);
}

._hostCtaButton_1wom3_399 {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  background: var(--app-accent, #2563eb);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

._hostCtaButton_1wom3_399:hover {
  opacity: 0.9;
}

/* Clickable request wrapper */
._requestClickable_1wom3_437 {
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: box-shadow 0.15s;
}

._requestClickable_1wom3_437:hover {
  box-shadow: 0 0 0 2px var(--app-accent, #2563eb);
}

/* Unread indicator — subtle left border + slight background tint */
._requestUnread_1wom3_459 {
  border-left: 3px solid var(--app-accent, #2563eb);
  background-color: color-mix(in srgb, var(--app-accent, #2563eb) 5%, transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
  ._container_1wom3_1 {
    padding: var(--spacing-4);
  }

  ._header_1wom3_15 h1 {
    font-size: var(--font-size-xl);
  }

  ._tabsList_1wom3_175 {
    gap: 0;
  }

  ._tabsTrigger_1wom3_189 {
    padding: var(--spacing-3) var(--spacing-2);
    font-size: var(--font-size-xs);
  }

  ._badge_1wom3_251 {
    font-size: var(--font-size-2xs);
  }

  ._errorBanner_1wom3_47 {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-2);
  }

  ._retryButton_1wom3_81 {
    margin-left: 0;
    width: 100%;
  }
}
._container_1d9qi_1 {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-6);
  padding-bottom: var(--spacing-12);
}

._header_1d9qi_15 {
  margin-bottom: var(--spacing-8);
}

._header_1d9qi_15 h1 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-2);
  color: var(--text-primary);
}

._subtitle_1d9qi_37 {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

/* Empty state */
._emptyState_1d9qi_49 {
  text-align: center;
  padding: var(--spacing-12) var(--spacing-6);
}

._emptyIcon_1d9qi_59 {
  font-size: 3rem;
  margin-bottom: var(--spacing-4);
  opacity: 0.4;
}

._emptyTitle_1d9qi_71 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-2);
}

._emptyDescription_1d9qi_85 {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto var(--spacing-6) auto;
}

._hideLink_1d9qi_101 {
  display: inline-block;
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: var(--spacing-2);
}

._hideLink_1d9qi_101:hover {
  color: var(--text-primary);
}

._hideHint_1d9qi_133 {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  margin-top: var(--spacing-2);
  font-style: italic;
}

/* Trip card */
._tripCard_1d9qi_149 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6);
  margin-bottom: var(--spacing-4);
}

._tripStatus_1d9qi_165 {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: var(--spacing-3);
}

._statusActive_1d9qi_183 {
  background: #dcfce7;
  color: #166534;
}

._statusUpcoming_1d9qi_193 {
  background: #dbeafe;
  color: #1e40af;
}

._tripHost_1d9qi_203 {
  display: flex;
  align-items: center;
  gap: var(--spacing-3);
  margin-bottom: var(--spacing-4);
}

._hostAvatar_1d9qi_217 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
}

._hostInfo_1d9qi_233 {
  flex: 1;
}

._hostName_1d9qi_241 {
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--text-primary);
}

._listingTitle_1d9qi_253 {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

._tripDates_1d9qi_263 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-3);
}

._tripAddress_1d9qi_281 {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-4);
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

/* Action buttons */
._actions_1d9qi_301 {
  display: flex;
  gap: var(--spacing-3);
  flex-wrap: wrap;
  margin-top: var(--spacing-4);
  padding-top: var(--spacing-4);
  border-top: 1px solid var(--border);
}

._actionButton_1d9qi_319 {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-4);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.15s;
}

._actionButton_1d9qi_319:hover {
  background: var(--background);
}

._actionButtonPrimary_1d9qi_357 {
  background: var(--app-accent, #2563eb);
  color: white;
  border-color: var(--app-accent, #2563eb);
}

._actionButtonPrimary_1d9qi_357:hover {
  opacity: 0.9;
}

/* Placeholder sections */
._section_1d9qi_381 {
  margin-top: var(--spacing-6);
}

._sectionTitle_1d9qi_389 {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-3);
}

._placeholderCard_1d9qi_403 {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-6);
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

._loadingContainer_1d9qi_423 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-12);
  gap: var(--spacing-4);
}

._spinner_1d9qi_441 {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--app-accent, #2563eb);
  border-radius: 50%;
  animation: _spin_1d9qi_441 0.8s linear infinite;
}

@keyframes _spin_1d9qi_441 {
  to { transform: rotate(360deg); }
}

._browseLink_1d9qi_467 {
  display: inline-block;
  margin-top: var(--spacing-4);
  padding: var(--spacing-3) var(--spacing-6);
  background: var(--app-accent, #2563eb);
  color: white;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

._browseLink_1d9qi_467:hover {
  opacity: 0.9;
}
