/* 90s embedded fonts */
@font-face {
  font-family: 'Press Start 2P';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/e3t4euO8T-267oIAQAu6jDQyK0nS.ttf) format('truetype');
}
@font-face {
  font-family: 'VT323';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/pxiKyp0ihIEF2hsY.ttf) format('truetype');
}

body.theme-90s{
      /* Gray scale */
      --gray-50: #f9fafb;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --gray-300: #d1d5db;
      --gray-400: #9ca3af;
      --gray-500: #6b7280;
      --gray-600: #4b5563;
      --gray-700: #374151;
      --gray-800: #1f2937;
      --gray-900: #111827;
      
      /* Brand colors  */
      --blue-50: #eff6ff;
      --blue-100: #dbeafe;
      --blue-500: #3b82f6;
      --blue-600: #2563eb;
      --blue-700: #1d4ed8;
      
      --green-50: #f0fdf4;
      --green-500: #22c55e;
      --green-600: #16a34a;
      
      --yellow-50: #fefce8;
      --yellow-500: #eab308;
      --yellow-600: #ca8a04;
      
      --red-50: #fef2f2;
      --red-500: #ef4444;
      --red-600: #dc2626;
      
      /* Semantic colors */
      --primary: #2563eb;
      --primary-hover: #1d4ed8;
      --success: #16a34a;
      --warning: #ca8a04;
      --danger: #dc2626;
      
      --text-primary: #111827;
      --text-secondary: #6b7280;
      --text-tertiary: #9ca3af;
      
      --border-color: #e5e7eb;
      --bg-primary: #ffffff;
      --bg-secondary: #f9fafb;
      --bg-tertiary: #f3f4f6;
      
      /* Shadows */
      --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
      --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      
      /* Typography */
      --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      
      /* Spacing */
      --spacing-xs: 4px;
      --spacing-sm: 8px;
      --spacing-md: 16px;
      --spacing-lg: 24px;
      --spacing-xl: 32px;
      
      /* Border radius */
      --radius-sm: 6px;
      --radius: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
    }

    body.theme-90s *{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body.theme-90s, body.theme-90s{
      height: 100%;
    }

    body.theme-90s{
      font-family: var(--font-sans);
      color: var(--text-primary);
      background: var(--bg-secondary);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    body.theme-90s .app{
      max-width: 1400px;
      margin: 0 auto;
      padding: 24px;
      opacity: 1;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    body.theme-90s.appLoading .app{
      opacity: 0;
      transform: translateY(6px);
      pointer-events: none;
    }

    /* Header */
    body.theme-90s .header{
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 16px 24px;
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    body.theme-90s .brand{
      display: flex;
      align-items: center;
      gap: 12px;
    }

    body.theme-90s .brandLogo{
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 16px;
      box-shadow: var(--shadow-sm);
    }

    body.theme-90s .brandText h1{
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--gray-900);
      line-height: 1.2;
    }

    body.theme-90s .brandText .subtitle{
      font-size: 13px;
      color: var(--text-secondary);
      margin-top: 2px;
    }

    /* Navigation */
    body.theme-90s .nav{
      display: flex;
      gap: 8px;
      background: var(--gray-100);
      padding: 4px;
      border-radius: var(--radius);
    }

    body.theme-90s .navBtn{
      padding: 8px 16px;
      background: transparent;
      border: none;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.15s ease;
    }

    body.theme-90s .navBtn:hover{
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.5);
    }

    body.theme-90s .navBtn.active{
      background: white;
      color: var(--text-primary);
      box-shadow: var(--shadow-xs);
    }

    body.theme-90s.crmLiteOff .navBtn[data-tab="tasks"]{
      display: none;
    }
    body.theme-90s.crmLiteOff #resultsCard{
      display: none;
    }

    /* Account menu */
    body.theme-90s .accountMenu{
      position: relative;
    }

        body.theme-90s .accountBtn{
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 2px 6px;
      height: 30px;
      background: var(--gray-100);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      font-size: 13px;
      color: var(--text-primary);
      cursor: pointer;
      transition: all 0.15s ease;
    }

    body.theme-90s .accountBtn:hover{
      background: var(--gray-200);
    }

        body.theme-90s .accountStatus{
      width: 6px;
      height: 6px;
      background: var(--success);
      border-radius: 50%;
      border: 1px solid white;
    }
        body.theme-90s .accountBadge{
      min-width: 20px;
      height: 20px;
      padding: 0 4px;
      border-radius: var(--radius-sm);
      background: transparent;
      border: none;
      box-shadow: none;
      color: var(--text-primary);
      font-weight: 700;
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
    }
    body.theme-90s .accountChevron{
      width: 14px;
      height: 14px;
      color: var(--text-tertiary);
    }

    body.theme-90s .dropdown{
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 200px;
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      padding: 4px;
      display: none;
      z-index: 100;
    }

    body.theme-90s .dropdown.open{
      display: block;
    }

    body.theme-90s .dropdownItem{
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
      cursor: pointer;
      transition: background 0.15s ease;
      text-decoration: none;
    }

    body.theme-90s .dropdownItem:hover{
      background: var(--gray-100);
    }

    body.theme-90s .dropdownItem.danger{
      color: var(--danger);
    }

    body.theme-90s .dropdownDivider{
      height: 1px;
      background: var(--border-color);
      margin: 4px 0;
    }

    body.theme-90s .kbd{
      font-size: 11px;
      padding: 2px 6px;
      background: var(--gray-100);
      border: 1px solid var(--border-color);
      border-radius: 4px;
      color: var(--text-tertiary);
      font-family: monospace;
    }

    /* Pages */
    body.theme-90s .page{
      display: none;
    }

    body.theme-90s .page.active{
      display: block;
    }

    /* Cards */
    body.theme-90s .card{
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    body.theme-90s .cardHeader{
      padding: 20px 24px;
      border-bottom: 1px solid var(--border-color);
    }

    body.theme-90s .cardTitle{
      font-size: 16px;
      font-weight: 600;
      color: var(--gray-900);
      margin-bottom: 4px;
    }

    body.theme-90s .cardSubtitle{
      font-size: 14px;
      color: var(--text-secondary);
    }

    body.theme-90s .cardBody{
      padding: 24px;
    }

    body.theme-90s .cardFooter{
      padding: 16px 24px;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      font-size: 14px;
      color: var(--text-secondary);
    }

    /* Grid layouts */
    body.theme-90s .grid{
      display: grid;
      gap: 24px;
    }

    body.theme-90s .grid-2{
      grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
      body.theme-90s .grid-2{
        grid-template-columns: 2fr 1fr;
      }
    }

    body.theme-90s .stack{
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* Stats */
    body.theme-90s .statsGrid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-bottom: 24px;
    }

    body.theme-90s .statCard{
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 20px;
      box-shadow: var(--shadow-sm);
    }

    body.theme-90s .statCard.compact{
      padding: 12px 16px;
    }

    body.theme-90s .statCard.compact .pauseStatus{
      font-size: 18px;
    }

    body.theme-90s .billingStat{
      padding: 12px 0;
    }

    body.theme-90s .billingStat + .billingStat{
      border-top: 1px solid var(--border-color);
      margin-top: 12px;
      padding-top: 12px;
    }

    body.theme-90s .billingStatsGrid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 12px;
      border-top: 1px solid var(--border-color);
      margin-top: 12px;
      padding-top: 12px;
    }

    body.theme-90s .billingStatsGrid .billingStat{
      padding: 0;
    }

    body.theme-90s .billingStatsGrid .billingStat + .billingStat{
      border-top: none;
      margin-top: 0;
      padding-top: 0;
    }

    body.theme-90s .statMeta{
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 4px;
    }

    body.theme-90s .dashboardCards{
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    body.theme-90s .takingSummary{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
    }

    body.theme-90s .takingMiniCard{
      border: 1px solid var(--border-color);
      border-radius: 10px;
      background: var(--bg-tertiary);
      padding: 6px 10px;
      min-width: 110px;
    }

    body.theme-90s .takingMiniTitle{
      font-size: 12px;
      font-weight: 600;
      color: var(--text-primary);
    }

    body.theme-90s .takingMiniMeta{
      font-size: 12px;
      color: var(--text-secondary);
    }

    body.theme-90s .scheduleHeaderRow{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    body.theme-90s .scheduleHeaderMeta{
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
    }

    body.theme-90s .scheduleRecommendBtn{
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 500;
      padding: 0;
      border-radius: 0;
      border: none;
      background: transparent;
      color: var(--text-secondary);
      cursor: pointer;
      white-space: nowrap;
    }

    body.theme-90s .scheduleRecommendBtn:hover{
      color: var(--primary);
      text-decoration: underline;
    }

    body.theme-90s .scheduleTz{
      font-size: 11px;
      color: var(--text-tertiary);
      white-space: nowrap;
    }

    body.theme-90s .infoTooltip{
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px;
      height: 20px;
      margin-left: 6px;
      border-radius: 50%;
      border: 1px solid var(--border-color);
      background: var(--bg-tertiary);
      color: var(--text-tertiary);
      font-size: 11px;
      font-weight: 600;
      line-height: 1;
      cursor: help;
    }

    body.theme-90s .infoTooltip::after, body.theme-90s .infoTooltip::before{
      display: none;
    }

    body.theme-90s .bodyTooltip{
      position: fixed;
      max-width: 280px;
      padding: 8px 10px;
      border-radius: 10px;
      background: #111827;
      color: #ffffff;
      font-size: 12px;
      line-height: 1.35;
      box-shadow: var(--shadow-md);
      opacity: 0;
      pointer-events: none;
      transform: translateY(4px);
      transition: opacity 0.15s ease, transform 0.15s ease;
      z-index: 9999;
    }

    body.theme-90s .bodyTooltip.visible{
      opacity: 1;
      transform: translateY(0);
    }

    body.theme-90s .bodyTooltipArrow{
      position: absolute;
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid #111827;
      left: 50%;
      transform: translateX(-50%);
    }

    body.theme-90s .cardHeaderRow{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    body.theme-90s .miniSelect{
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 4px 8px;
      font-size: 12px;
      background: white;
      color: var(--text-secondary);
    }

    body.theme-90s .metricValue{
      font-size: 24px;
      font-weight: 700;
      color: var(--gray-900);
    }

    body.theme-90s .metricMeta{
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 6px;
    }

    body.theme-90s th.sortable{
      cursor: default;
      transition: color 0.15s ease;
    }

    body.theme-90s th.sortable:hover{
      cursor: pointer;
      color: var(--gray-900);
      text-decoration: underline;
    }

    body.theme-90s .statLabel{
      font-size: 13px;
      font-weight: 500;
      color: var(--text-secondary);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    body.theme-90s .statValue{
      font-size: 32px;
      font-weight: 700;
      color: var(--gray-900);
      line-height: 1;
    }

    body.theme-90s .statChange{
      font-size: 13px;
      font-weight: 500;
      margin-top: 8px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    body.theme-90s .statChange.positive{
      color: var(--success);
    }

    body.theme-90s .statChange.negative{
      color: var(--danger);
    }

    body.theme-90s .pauseRow{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 6px;
    }

    body.theme-90s .pauseControls{
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
    }

    body.theme-90s .pauseStatus{
      font-size: 20px;
      font-weight: 700;
      color: var(--gray-900);
    }

    body.theme-90s .pauseNote{
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 0;
    }

    /* Tables */
    body.theme-90s .tableContainer{
      overflow-x: auto;
    }

    body.theme-90s .scheduleTableContainer{
      overflow: visible;
    }

    body.theme-90s .scheduleTableContainer .tableScrollX{
      overflow-x: auto;
    }

    body.theme-90s .scheduleCard{
      overflow: visible;
      position: relative;
      z-index: 1;
    }

    body.theme-90s .table{
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    body.theme-90s .table thead{
      background: var(--bg-secondary);
      border-bottom: 1px solid var(--border-color);
    }

    body.theme-90s .table th{
      padding: 12px 16px;
      text-align: left;
      font-weight: 600;
      font-size: 12px;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    body.theme-90s .table td{
      padding: 16px;
      border-bottom: 1px solid var(--border-color);
      color: var(--text-primary);
    }

    body.theme-90s .table tbody tr{
      transition: background 0.15s ease;
    }

    body.theme-90s .table tbody tr:hover{
      background: var(--bg-secondary);
    }

    body.theme-90s .table tbody tr:last-child td{
      border-bottom: none;
    }

    body.theme-90s .tableLink{
      color: var(--primary);
      font-weight: 500;
      text-decoration: none;
      transition: color 0.15s ease;
    }

    body.theme-90s .tableLink:hover{
      color: var(--primary-hover);
      text-decoration: underline;
    }

    /* Status badges */
    body.theme-90s .badge{
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
    }

    body.theme-90s .badge-new{
      background: var(--blue-50);
      color: var(--blue-700);
    }

    body.theme-90s .badge-contacted{
      background: var(--yellow-50);
      color: var(--yellow-600);
    }

    body.theme-90s .badge-sold,
    body.theme-90s .badge-won{
      background: var(--green-50);
      color: var(--green-600);
    }

    body.theme-90s .badge-lost{
      background: var(--red-50);
      color: var(--red-600);
    }

    body.theme-90s .badgeDot{
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
    }

    body.theme-90s .statusCell{
      position: relative;
      display: inline-flex;
      align-items: center;
      cursor: pointer;
    }

    body.theme-90s .statusCell:hover .badge{
      box-shadow: 0 0 0 1px var(--border-color) inset;
    }

    body.theme-90s .statusSelect{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      border: none;
      background: transparent;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      pointer-events: none;
    }

    body.theme-90s .statusCell:hover .statusSelect, body.theme-90s .statusCell:focus-within .statusSelect{
      pointer-events: auto;
    }

    body.theme-90s .statusSelect option{
      color: var(--gray-900);
    }

    /* Forms */
    body.theme-90s .formGroup{
      margin-bottom: 20px;
    }

    body.theme-90s .label{
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-700);
      margin-bottom: 6px;
    }

    body.theme-90s .input, body.theme-90s .select{
      width: 100%;
      height: 44px;
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 0 14px;
      font-size: 14px;
      color: var(--text-primary);
      transition: all 0.15s ease;
    }

    body.theme-90s .input:focus, body.theme-90s .select:focus{
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    body.theme-90s .textarea{
      width: 100%;
      min-height: 100px;
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 12px 14px;
      font-size: 14px;
      font-family: inherit;
      color: var(--text-primary);
      resize: vertical;
      transition: all 0.15s ease;
    }

    body.theme-90s .textarea:focus{
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    /* Buttons */
    body.theme-90s .btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 40px;
      padding: 0 16px;
      font-size: 14px;
      font-weight: 500;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all 0.15s ease;
      border: none;
    }

    body.theme-90s .btnPrimary{
      background: var(--primary);
      color: white;
    }

    body.theme-90s .btnPrimary:hover{
      background: var(--primary-hover);
      transform: translateY(-1px);
      box-shadow: var(--shadow);
    }

    body.theme-90s .btnPrimary:disabled{
      background: var(--gray-300);
      cursor: not-allowed;
      transform: none;
    }

    body.theme-90s .btnSecondary{
      background: white;
      color: var(--text-primary);
      border: 1px solid var(--border-color);
    }


    body.theme-90s .btnDanger{
      background: #fee2e2;
      color: #b91c1c;
      border: 1px solid #fecaca;
    }

    body.theme-90s .btnSecondary:hover{
      background: var(--gray-50);
    }

    /* Search */
    body.theme-90s .searchInput{
      position: relative;
    }

    body.theme-90s .searchInput input{
      padding-left: 40px;
    }

    body.theme-90s .searchIcon{
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      color: var(--text-tertiary);
    }

    /* Filters */
    body.theme-90s .filters{
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    body.theme-90s .filters .searchInput{
      flex: 1;
      min-width: 240px;
    }

    body.theme-90s .filters .select{
      min-width: 160px;
    }

    /* Chart container */
    body.theme-90s .chartWrapper{
      position: relative;
      height: 300px;
      margin-bottom: 16px;
    }

    body.theme-90s canvas{
      width: 100% !important;
      height: 100% !important;
    }

    body.theme-90s .legend{
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    body.theme-90s .legendItem{
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-secondary);
      font-weight: 500;
    }

    body.theme-90s .legendDot{
      width: 12px;
      height: 12px;
      border-radius: 3px;
    }

    /* Recent contacts */
    body.theme-90s .winsList{
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* Live view */
    body.theme-90s .liveViewList{
      --row-height: 28px;
      --row-gap: 12px;
      --visible-rows: 4;
      position: relative;
      height: calc(var(--visible-rows) * (var(--row-height) + var(--row-gap)) - var(--row-gap));
      overflow: hidden;
    }

    body.theme-90s .liveViewTrack{
      display: flex;
      flex-direction: column;
      gap: var(--row-gap);
      transform: translateY(0);
    }

    body.theme-90s .liveViewItem{
      display: flex;
      align-items: center;
      gap: 10px;
      height: var(--row-height);
      font-size: 13px;
      color: var(--text-secondary);
    }

    body.theme-90s .liveViewDot{
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--dot-color);
      box-shadow: 0 0 12px var(--dot-color);
      flex-shrink: 0;
    }

    body.theme-90s .liveViewText{
      font-weight: 500;
      color: var(--text-primary);
    }

    body.theme-90s .liveViewEmpty{
      color: var(--text-tertiary);
      text-align: center;
      padding: 32px 0;
    }

    body.theme-90s .liveViewNote{
      margin-top: 14px;
      color: var(--text-tertiary);
      font-size: 12px;
    }

    body.theme-90s .winItem{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border-color);
      border-radius: 0;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    body.theme-90s .winItem::before{
      content: '';
      position: absolute;
      left: -24px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--primary);
      opacity: 0;
      transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.theme-90s .winItem:hover{
      background: var(--bg-secondary);
      border-color: transparent;
      padding-left: 12px;
      padding-right: 12px;
      margin: 0 -12px;
    }

    body.theme-90s .winItem:hover::before{
      opacity: 1;
    }

    body.theme-90s .winItem:last-child{
      border-bottom: none;
    }

    body.theme-90s .winInfo{
      flex: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    body.theme-90s .winContent{
      flex: 1;
      min-width: 0;
    }

    body.theme-90s .winAmount{
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 2px;
      letter-spacing: -0.01em;
      font-family: var(--font-sans);
    }

    body.theme-90s .winAmount a{
      color: inherit;
      text-decoration: none;
    }

    body.theme-90s .winAmount a:hover{
      text-decoration: underline;
    }

    body.theme-90s .winDetails{
      font-size: 12px;
      font-weight: 500;
      color: var(--text-secondary);
      letter-spacing: -0.01em;
      font-family: var(--font-sans);
    }

    body.theme-90s .winRight{
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
    }

    body.theme-90s .winBadge{
      padding: 4px 10px;
      border-radius: var(--radius-sm);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    body.theme-90s .categoryBadge{
      padding: 3px 8px;
      border-radius: var(--radius-sm);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: var(--gray-100);
      color: var(--gray-600);
    }

    body.theme-90s .reminderText{
      font-size: 12px;
      font-weight: 500;
      color: var(--text-tertiary);
    }

    
    /* Error/Warning messages */
    body.theme-90s .alert{
      padding: 12px 16px;
      border-radius: var(--radius);
      margin-bottom: 16px;
      font-size: 14px;
      display: none;
    }

    body.theme-90s .alert.show{
      display: block;
    }

    body.theme-90s .alert-warning{
      background: var(--yellow-50);
      color: #854d0e;
      border: 1px solid #fde047;
    }

    body.theme-90s .alert-error{
      background: var(--red-50);
      color: #991b1b;
      border: 1px solid #fca5a5;
    }

    /* Utility classes */
    body.theme-90s .textCenter{
      text-align: center;
    }

    body.theme-90s .mt24{
      margin-top: 24px;
    }

    body.theme-90s .mb24{
      margin-bottom: 24px;
    }
  

    /* Options sub-tabs (pill nav, same styling as top nav) */
    body.theme-90s .subnav{
      display: inline-flex;
      gap: 8px;
      background: var(--gray-100);
      padding: 4px;
      border-radius: var(--radius);
      flex-wrap: wrap;
    }

    body.theme-90s .subnavBtn{
      padding: 8px 16px;
      background: transparent;
      border: none;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 500;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.15s ease;
      white-space: nowrap;
    }

    body.theme-90s .subnavBtn:hover{
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.5);
    }

    body.theme-90s .subnavBtn.active{
      background: white;
      color: var(--text-primary);
      box-shadow: var(--shadow-xs);
    }

    body.theme-90s .subpage{ display: none; }
    body.theme-90s .subpage.active{ display: block; }

    body.theme-90s .consolePage{ display: none; }
    body.theme-90s .consolePage.active{ display: block; }
    body.theme-90s .accountPage{ display: none; }
    body.theme-90s .accountPage.active{ display: block; }
    body.theme-90s .billingPage{ display: none; }
    body.theme-90s .billingPage.active{ display: block; }
    body.theme-90s .billingTxnPage{ display: none; }
    body.theme-90s .billingTxnPage.active{ display: block; }

    /* Profile (Account Settings) layout refresh */
    body.theme-90s .profileSection{
      margin-top: 24px;
    }

    body.theme-90s .profileSection:first-child{
      margin-top: 0;
    }

    body.theme-90s .profileSectionLabel{
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-tertiary);
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 16px;
    }

    body.theme-90s .profileGrid{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px 20px;
    }

    body.theme-90s .profileField{
      margin-bottom: 0;
    }

    body.theme-90s .profileField.full{
      grid-column: 1 / -1;
    }

    body.theme-90s .profilePage .label{
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
      letter-spacing: 0.02em;
    }

    body.theme-90s .profileInputWrap{
      position: relative;
    }

    body.theme-90s .profileInputIcon{
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-tertiary);
      display: inline-flex;
      align-items: center;
    }

    body.theme-90s .profileInput{
      background: var(--bg-tertiary);
      border-radius: 10px;
      height: 42px;
      padding: 0 14px 0 36px;
    }

    body.theme-90s .profileInput:hover{
      background: var(--bg-secondary);
    }

    body.theme-90s .profileInput:focus{
      background: #fff;
    }

    body.theme-90s .profileTwofa, body.theme-90s .profileExport{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      background: var(--bg-tertiary);
    }

    body.theme-90s .profileTwofaInfo, body.theme-90s .profileExportInfo{
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    body.theme-90s .profileTwofaTitle, body.theme-90s .profileExportTitle{
      font-size: 14px;
      font-weight: 600;
      color: var(--text-primary);
    }

    body.theme-90s .profileTwofaDesc, body.theme-90s .profileExportDesc{
      font-size: 12px;
      color: var(--text-secondary);
    }

    body.theme-90s .profileBadge{
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 6px;
      padding: 3px 10px;
      border-radius: 999px;
      border: 1px solid var(--border-color);
      background: rgba(148, 163, 184, 0.12);
      color: var(--text-secondary);
      font-size: 11px;
      font-weight: 500;
      width: fit-content;
    }

    body.theme-90s .profileBadge::before{
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
    }

    body.theme-90s .profileTwofaActions{
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    body.theme-90s .profilePage .accountActionsRow{
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid var(--border-color);
    }

    body.theme-90s .profilePage .accountActionsPrimary{
      gap: 12px;
    }

    body.theme-90s .profilePage .accountActionsDanger{
      max-width: 360px;
    }

    @media (max-width: 840px) {
      body.theme-90s .profileGrid{
        grid-template-columns: 1fr;
      }

      body.theme-90s .profileTwofa, body.theme-90s .profileExport{
        flex-direction: column;
        align-items: flex-start;
      }

      body.theme-90s .profileTwofaActions{
        justify-content: flex-start;
      }
    }

    body.theme-90s .contactsHeaderRow{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }


    body.theme-90s .contactsTitleRow{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    body.theme-90s .iconBtn{
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border-color);
      background: white;
      color: var(--text-primary);
      font-size: 18px;
      font-weight: 600;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-xs);
      transition: all 0.15s ease;
    }

    body.theme-90s .iconBtn:hover{
      background: var(--gray-50);
    }

    body.theme-90s .iconBtn:active{
      transform: translateY(1px);
    }

    body.theme-90s .modal{
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 200;
    }

    body.theme-90s .modalBackdrop{
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.3);
    }

    body.theme-90s .modalCard{
      position: relative;
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      width: min(520px, calc(100% - 32px));
      max-height: calc(100vh - 48px);
      overflow: auto;
      z-index: 1;
    }

    body.theme-90s .modalHeader{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid var(--border-color);
    }

    body.theme-90s .modalBody{
      padding: 16px 18px;
      display: grid;
      gap: 12px;
    }

    body.theme-90s .modalFooter{
      display: flex;
      gap: 12px;
      justify-content: flex-end;
      padding: 14px 18px;
      border-top: 1px solid var(--border-color);
      background: var(--bg-secondary);
    }

    body.theme-90s .sourceCol{
      display: none;
    }

    body.theme-90s .crmLiteOn .sourceCol{
      display: table-cell;
    }

    body.theme-90s .sourceBadge{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      border: 1px solid transparent;
    }

    body.theme-90s .sourceBadge.oc{
      background: #ecfdf3;
      color: #027a48;
      border-color: #abefc6;
    }

    body.theme-90s .sourceBadge.external{
      background: var(--gray-100);
      color: var(--gray-600);
      border-color: var(--border-color);
    }

    body.theme-90s .autocompleteList{
      margin-top: 6px;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      background: white;
      box-shadow: var(--shadow-sm);
      max-height: 190px;
      overflow: auto;
    }

    body.theme-90s .autocompleteItem{
      width: 100%;
      text-align: left;
      padding: 8px 12px;
      background: transparent;
      border: none;
      cursor: pointer;
      font-size: 13px;
      color: var(--text-primary);
    }

    body.theme-90s .autocompleteItem:hover, body.theme-90s .autocompleteItem:focus{
      background: var(--gray-50);
      outline: none;
    }

    body.theme-90s .autocompleteMeta{
      margin-top: 2px;
      font-size: 12px;
      color: var(--text-secondary);
    }

    body.theme-90s .autocompleteAttribution{
      margin-top: 6px;
      font-size: 11px;
      color: var(--text-tertiary);
    }

    body.theme-90s .crmLiteHint{
      font-size: 13px;
      color: var(--text-secondary);
      font-weight: 500;
    }

    body.theme-90s .footer{
      margin-top: 32px;
      padding: 16px 0 8px;
      text-align: center;
      color: var(--text-tertiary);
      font-size: 13px;
    }

    body.theme-90s .footer a{
      color: inherit;
      text-decoration: none;
      margin: 0 6px;
    }

    body.theme-90s .footer a:hover{
      color: var(--text-secondary);
      text-decoration: underline;
    }

    body.theme-90s .taskLink{
      background: none;
      border: none;
      color: var(--primary);
      font-weight: 600;
      cursor: pointer;
      padding: 0;
    }

    body.theme-90s .taskDrawer{
      position: fixed;
      inset: 0;
      display: none;
      z-index: 1200;
    }

    body.theme-90s .taskDrawer.open{
      display: block;
    }

    body.theme-90s .taskDrawerBackdrop{
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.35);
    }

    body.theme-90s .taskDrawerPanel{
      position: absolute;
      top: 0;
      right: 0;
      width: min(420px, 100%);
      height: 100%;
      background: white;
      border-left: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
    }

    body.theme-90s .taskDrawerHeader{
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid var(--border-color);
    }

    body.theme-90s .taskDrawerTitle{
      font-size: 16px;
      font-weight: 700;
    }

    body.theme-90s .taskDrawerSubtitle{
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 4px;
    }

    body.theme-90s .taskDrawerBody{
      padding: 16px 18px;
      display: grid;
      gap: 16px;
      overflow: auto;
    }

    body.theme-90s .taskDrawerSection{
      display: grid;
      gap: 6px;
    }


    body.theme-90s .taskDrawerForm{
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }

    body.theme-90s .taskDrawerRow{
      display: flex;
      gap: 10px;
    }

    body.theme-90s .taskDrawerRow .input{
      flex: 1;
    }

    body.theme-90s .taskDrawerActions{
      display: flex;
      gap: 10px;
      justify-content: flex-end;
    }

    body.theme-90s .taskCompleteRow{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
    }

    body.theme-90s .taskReminder{
      position: fixed;
      bottom: 24px;
      right: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: #fff;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 12px 14px;
      box-shadow: var(--shadow);
      max-width: 360px;
      opacity: 0;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 1300;
    }

    body.theme-90s .taskReminder.show{
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    body.theme-90s .taskReminderIcon{
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--gray-100);
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    body.theme-90s .taskReminderTitle{
      font-weight: 600;
      color: var(--text-primary);
      font-size: 14px;
    }

    body.theme-90s .taskReminderMeta{
      font-size: 13px;
      color: var(--text-secondary);
      margin-top: 2px;
    }

    body.theme-90s .taskReminderAction{
      margin-left: auto;
      border: 1px solid var(--border-color);
      background: #fff;
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      color: var(--text-primary);
    }

    body.theme-90s .taskReminderClose{
      border: none;
      background: transparent;
      color: var(--text-tertiary);
      font-size: 16px;
      cursor: pointer;
      padding: 4px 6px;
    }

    body.theme-90s .crmLiteText{
      font-size: 14px;
      color: var(--text-secondary);
      margin-bottom: 12px;
    }

    body.theme-90s .crmLiteNotice{
      color: #b42318;
    }

    body.theme-90s .crmLiteNoticeDetail{
      color: var(--text-secondary);
      margin-top: 6px;
      margin-bottom: 12px;
    }

    body.theme-90s .crmLiteList{
      display: grid;
      gap: 8px;
      margin: 0;
      color: var(--text-primary);
      font-weight: 600;
      font-size: 13px;
      line-height: 1.6;
      font-family: var(--font-sans);
    }

    body.theme-90s .crmLiteList div{
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    body.theme-90s .crmLiteList div::before{
      content: "•";
      color: #94a3b8;
      font-weight: 800;
      line-height: 1.2;
      margin-top: 2px;
    }

    body.theme-90s .crmLiteBubble{
      background: #f8fafc;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 14px 16px;
      margin-bottom: 16px;
    }

    body.theme-90s .crmLiteToggleRow{
      display: grid;
      gap: 10px;
      align-items: start;
      padding-top: 8px;
    }

    body.theme-90s .crmLiteLabel{
      font-weight: 600;
      color: var(--text-primary);
    }

    body.theme-90s .crmLiteWarning{
      font-size: 12px;
      color: var(--text-secondary);
      line-height: 1.4;
    }

    body.theme-90s .crmLiteToggle .toggleTrack{
      background: var(--gray-300);
    }

    body.theme-90s .crmLiteToggle input:checked + .toggleTrack{
      background: var(--green-600);
    }

    /* CRM Lite (Account) — styled to match account-settings-crm.html */
    body.theme-90s #account-crm-lite{
      --crm-bg: #f5f6fa;
      --crm-surface: #ffffff;
      --crm-surface-alt: #f9fafb;
      --crm-border: #e8eaf0;
      --crm-border-light: #f0f2f7;
      --crm-primary: #2563eb;
      --crm-primary-light: #eff4ff;
      --crm-primary-mid: #bfcfff;
      --crm-text-heading: #0f172a;
      --crm-text-body: #374151;
      --crm-text-muted: #6b7280;
      --crm-text-subtle: #9ca3af;
      --crm-warning-bg: #fff7ed;
      --crm-warning-border: #fed7aa;
      --crm-warning-text: #9a3412;
      --crm-success: #16a34a;
      --crm-toggle-off: #d1d5db;
      --crm-toggle-on: #16a34a;
      --crm-radius: 14px;
      --crm-radius-sm: 8px;
      --crm-shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
      --crm-shadow-hover: 0 4px 20px rgba(37,99,235,.12);
    }

    body.theme-90s #account-crm-lite .crmLiteCard{
      background: var(--crm-surface);
      border: 1px solid var(--crm-border);
      border-radius: var(--crm-radius);
      box-shadow: var(--crm-shadow-card);
      overflow: hidden;
    }

    body.theme-90s #account-crm-lite .card-header{
      padding: 28px 32px 24px;
      border-bottom: 1px solid var(--crm-border-light);
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    body.theme-90s #account-crm-lite .card-icon{
      width: 44px; height: 44px;
      background: var(--crm-primary-light);
      border-radius: 11px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    body.theme-90s #account-crm-lite .card-title{
      font-family: var(--font-sans);
      font-size: 18px;
      font-weight: 600;
      color: var(--crm-text-heading);
      letter-spacing: -.3px;
      margin-bottom: 4px;
    }

    body.theme-90s #account-crm-lite .card-desc{
      font-size: 13.5px;
      color: var(--crm-text-muted);
    }

    body.theme-90s #account-crm-lite .badge{
      margin-left: 10px;
      display: inline-flex;
      align-items: center;
      padding: 2px 9px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      background: var(--crm-primary-light);
      color: var(--crm-primary);
      letter-spacing: .2px;
      vertical-align: middle;
    }

    body.theme-90s #account-crm-lite .badge.free{
      background: #dcfce7;
      color: #15803d;
    }

    body.theme-90s #account-crm-lite .features-section{
      padding: 28px 32px;
      border-bottom: 1px solid var(--crm-border-light);
    }

    body.theme-90s #account-crm-lite .section-label{
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--crm-text-subtle);
      margin-bottom: 16px;
    }

    body.theme-90s #account-crm-lite .features-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    body.theme-90s #account-crm-lite .feature-item{
      display: flex;
      align-items: flex-start;
      gap: 11px;
      padding: 14px 16px;
      background: var(--crm-surface-alt);
      border: 1px solid var(--crm-border-light);
      border-radius: 10px;
      transition: all .2s;
      cursor: default;
    }

    body.theme-90s #account-crm-lite .feature-item:hover{
      border-color: var(--crm-primary-mid);
      background: var(--crm-primary-light);
      box-shadow: var(--crm-shadow-hover);
      transform: translateY(-1px);
    }

    body.theme-90s #account-crm-lite .feature-check{
      width: 20px; height: 20px;
      background: var(--crm-primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    body.theme-90s #account-crm-lite .feature-text{
      font-size: 13.5px;
      font-weight: 500;
      color: var(--crm-text-heading);
      line-height: 1.4;
    }

    body.theme-90s #account-crm-lite .feature-sub{
      font-size: 11.5px;
      color: var(--crm-text-muted);
      margin-top: 1px;
    }

    body.theme-90s #account-crm-lite .notice{
      margin: 24px 32px;
      padding: 16px 20px;
      background: var(--crm-warning-bg);
      border: 1px solid var(--crm-warning-border);
      border-radius: 10px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    body.theme-90s #account-crm-lite .notice-icon{
      flex-shrink: 0;
      margin-top: 1px;
    }

    body.theme-90s #account-crm-lite .notice p{
      font-size: 13px;
      color: var(--crm-warning-text);
      line-height: 1.6;
    }

    body.theme-90s #account-crm-lite .notice a{
      color: var(--crm-warning-text);
      font-weight: 600;
      text-decoration: underline;
    }

    body.theme-90s #account-crm-lite .notice-sub{
      font-size: 12.5px;
      color: var(--crm-text-muted);
      margin-top: 6px;
      padding: 0 32px;
    }

    body.theme-90s #account-crm-lite .crmLiteDivider{
      border: none;
      border-top: 1px solid var(--crm-border-light);
      margin: 20px 32px 0;
    }

    body.theme-90s #account-crm-lite .toggle-section{
      padding: 28px 32px;
    }

    body.theme-90s #account-crm-lite .toggle-header{
      font-family: var(--font-sans);
      font-size: 16px;
      font-weight: 600;
      color: var(--crm-text-heading);
      margin-bottom: 6px;
      letter-spacing: -.2px;
    }

    body.theme-90s #account-crm-lite .toggle-desc{
      font-size: 13px;
      color: var(--crm-text-muted);
      line-height: 1.6;
      max-width: 600px;
      margin-bottom: 20px;
    }

    body.theme-90s #account-crm-lite .crmLiteConfirm{
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 13px;
      color: var(--crm-text-muted);
      line-height: 1.6;
      max-width: 600px;
      margin-bottom: 20px;
    }

    body.theme-90s #account-crm-lite .crmLiteConfirm input{
      margin-top: 0;
      width: 16px;
      height: 20px;
    }

    body.theme-90s #account-crm-lite .toggle-wrap.is-disabled{
      opacity: 0.55;
      pointer-events: none;
    }

    body.theme-90s #account-crm-lite .toggle-switch:disabled + .toggle-slider{
      cursor: not-allowed;
    }

    body.theme-90s #account-crm-lite .toggle-row{
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      background: var(--crm-surface-alt);
      border: 1px solid var(--crm-border);
      border-radius: 12px;
      max-width: 480px;
      transition: border-color .2s;
    }

    body.theme-90s #account-crm-lite .toggle-row.is-on{
      border-color: var(--crm-primary-mid);
      background: var(--crm-primary-light);
    }

    body.theme-90s #account-crm-lite .toggle-row.is-off{
      border-color: #fca5a5;
      background: #fff5f5;
    }

    body.theme-90s #account-crm-lite .toggle-label{
      font-size: 14px;
      font-weight: 500;
      color: var(--crm-text-heading);
    }

    body.theme-90s #account-crm-lite .toggle-status{
      font-size: 12px;
      color: var(--crm-text-muted);
      margin-top: 2px;
    }

    body.theme-90s #account-crm-lite .toggle-status.on{
      color: var(--crm-success);
      font-weight: 500;
    }

    body.theme-90s #account-crm-lite .toggle-row.is-off .toggle-status{
      color: #dc2626;
      font-weight: 500;
    }

    body.theme-90s #account-crm-lite .toggle-wrap{
      position: relative;
      width: 40px; height: 22px;
    }

    body.theme-90s #account-crm-lite .toggle-switch{
      opacity: 0;
      width: 0; height: 0;
      position: absolute;
    }

    body.theme-90s #account-crm-lite .toggle-slider{
      position: absolute;
      cursor: pointer;
      inset: 0;
      background: var(--crm-toggle-off);
      border-radius: 26px;
      transition: .25s;
    }

    body.theme-90s #account-crm-lite .toggle-slider::before{
      content: '';
      position: absolute;
      width: 20px; height: 20px;
      left: 3px; top: 3px;
      background: white;
      border-radius: 50%;
      transition: .25s cubic-bezier(.34,1.56,.64,1);
      box-shadow: 0 1px 4px rgba(0,0,0,.2);
    }

    body.theme-90s #account-crm-lite .toggle-switch:checked + .toggle-slider{
      background: var(--crm-toggle-on);
    }

    body.theme-90s #account-crm-lite .toggle-switch:checked + .toggle-slider::before{
      transform: translateX(22px);
    }

    @media (max-width: 900px) {
      body.theme-90s #account-crm-lite .features-grid{ grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 580px) {
      body.theme-90s #account-crm-lite .features-grid{ grid-template-columns: 1fr; }
      body.theme-90s #account-crm-lite .card-header{ flex-direction: column; }
    }

    body.theme-90s .consoleHeader{
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

                body.theme-90s .consoleHeader .subnav{
      margin-left: auto;
    }
        body.theme-90s .accountBadge{
      min-width: 20px;
      height: 20px;
      padding: 0 4px;
      border-radius: var(--radius-sm);
      background: transparent;
      border: none;
      box-shadow: none;
      color: var(--text-primary);
      font-weight: 700;
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
    }
/* Lead type tabs */
    body.theme-90s .leadTypeCard{
      min-height: 520px;
    }

    body.theme-90s .leadTypeTabs{
      margin-top: 4px;
    }

    body.theme-90s .leadTypePanel{
      display: none;
      margin-top: 16px;
      padding: 14px 16px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      background: var(--bg-secondary);
    }

    body.theme-90s .leadTypePanel.active{
      display: block;
    }

    body.theme-90s .leadTypeToggle{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-weight: 600;
      color: var(--gray-900);
    }

    body.theme-90s .toggleSwitch{
      position: relative;
      display: inline-flex;
      align-items: center;
      cursor: pointer;
    }

    body.theme-90s .toggleSwitch input{
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    body.theme-90s .toggleTrack{
      width: 48px;
      height: 26px;
      border-radius: 999px;
      background: #fca5a5;
      border: 1px solid #f87171;
      display: flex;
      align-items: center;
      transition: all 0.2s ease;
    }

    body.theme-90s .toggleThumb{
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: white;
      transform: translateX(3px);
      transition: transform 0.2s ease;
      box-shadow: var(--shadow-xs);
    }

    body.theme-90s .toggleSwitch input:checked + .toggleTrack{
      background: #bbf7d0;
      border-color: #4ade80;
    }

    body.theme-90s .toggleSwitch input:checked + .toggleTrack .toggleThumb{
      transform: translateX(25px);
    }

    body.theme-90s .toggleSwitch input:focus-visible + .toggleTrack{
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
    }

    body.theme-90s .priceToggleRow{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    body.theme-90s .statePrice{
      color: var(--text-secondary);
      font-weight: 500;
    }

    body.theme-90s .statePrefToggle .toggleTrack{
      width: 44px;
      height: 22px;
    }

    body.theme-90s .statePrefToggle .toggleThumb{
      width: 18px;
      height: 18px;
      transform: translateX(2px);
    }

    body.theme-90s .statePrefToggle input:checked + .toggleTrack .toggleThumb{
      transform: translateX(22px);
    }

    body.theme-90s .leadTypeHelp{
      margin-top: 6px;
      font-size: 13px;
      color: var(--text-secondary);
    }

    body.theme-90s .typeCapRow{
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
      justify-content: flex-end;
    }

    body.theme-90s .typeCapWarn{
      font-size: 12px;
      color: var(--danger);
    }

    body.theme-90s .typeCapLabel{
      font-size: 12px;
      color: var(--text-secondary);
      min-width: 90px;
    }

    body.theme-90s .typeCapInput{
      max-width: 140px;
    }

    body.theme-90s .currencyField{
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    body.theme-90s .typeCapField{
      gap: 8px;
      align-items: center;
    }

    body.theme-90s .typeCapField[data-unlimited="1"] .currencySymbol{
      display: none;
    }

    body.theme-90s .typeCapField[data-unlimited="1"] .typeCapInput{
      padding-left: 10px;
    }

    body.theme-90s .typeCapInput:disabled{
      background: var(--bg-tertiary);
      color: var(--text-tertiary);
    }

    body.theme-90s .typeCapInput:disabled::placeholder{
      color: var(--text-secondary);
    }

    body.theme-90s .typeCapControls{
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    body.theme-90s .typeCapEdit, body.theme-90s .typeCapReset{
      border: 1px solid var(--border-color);
      background: white;
      color: var(--text-secondary);
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 8px;
      cursor: pointer;
      line-height: 1.1;
    }

    body.theme-90s .typeCapEdit:hover, body.theme-90s .typeCapReset:hover{
      color: var(--text-primary);
    }

    body.theme-90s .typeCapReset:disabled{
      opacity: 0.5;
      cursor: default;
    }

    body.theme-90s .currencyField .currencySymbol{
      position: absolute;
      left: 10px;
      color: var(--text-tertiary);
      font-weight: 600;
      font-size: 13px;
      pointer-events: none;
    }

    body.theme-90s .currencyField .input{
      padding-left: 20px;
    }

    body.theme-90s .typeMsg{
      margin-top: 14px;
      font-size: 13px;
      color: var(--text-secondary);
      min-height: 18px;
    }

    body.theme-90s .scheduleDayToggle{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 600;
      color: var(--gray-900);
    }

    body.theme-90s .scheduleDayLabel{
      font-weight: 600;
      color: var(--gray-900);
    }

    body.theme-90s .scheduleCapInput{
      max-width: 120px;
    }

    body.theme-90s .scheduleSpendSummary{
      font-size: 12px;
      color: var(--text-secondary);
      line-height: 1.35;
    }

    body.theme-90s .optionsHeaderRow{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    body.theme-90s .advancedSettings{
      margin-top: 24px;
    }

    body.theme-90s .advancedToggle{
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 16px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      background: var(--bg-secondary);
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: border-color 0.15s ease, color 0.15s ease;
    }

    body.theme-90s .advancedToggle:hover{
      border-color: var(--primary);
      color: var(--primary);
    }

    body.theme-90s .advancedToggleIcon{
      font-size: 16px;
      transition: transform 0.2s ease;
    }

    body.theme-90s .advancedToggle[aria-expanded="true"] .advancedToggleIcon{
      transform: rotate(180deg);
    }

    body.theme-90s .advancedSettingsPanel{
      margin-top: 16px;
    }

    body.theme-90s .leadProfilesGrid{
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: stretch;
    }

    body.theme-90s .leadProfileAddBtn{
      width: 96px;
      height: 96px;
      border-radius: 50%;
      border: 2px dashed var(--border-color);
      background: var(--bg-secondary);
      color: var(--text-tertiary);
      font-size: 36px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    body.theme-90s .leadProfileAddBtn:hover{
      border-color: var(--primary);
      color: var(--primary);
      background: #f8fbff;
    }

    body.theme-90s .leadProfileAddBtn:disabled{
      opacity: 0.5;
      cursor: default;
    }

    body.theme-90s .leadProfileCard{
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 10px 12px;
      background: var(--bg-tertiary);
      min-width: 140px;
      cursor: pointer;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      position: relative;
    }

    body.theme-90s .leadProfileCard:hover{
      border-color: var(--primary);
      box-shadow: var(--shadow-xs);
    }

    body.theme-90s .leadProfileTitle{
      font-size: 13px;
      font-weight: 600;
      color: var(--text-primary);
    }

    body.theme-90s .leadProfileSubtitle{
      font-size: 11px;
      color: var(--text-secondary);
      margin-top: 2px;
    }

    body.theme-90s .leadProfileMeta{
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 4px;
    }

    body.theme-90s .profileStateMapWrap{
      margin: 12px auto 0;
      padding: 4px 0;
      border: none;
      background: transparent;
      max-width: 520px;
    }

    body.theme-90s .profileStateMap{
      width: 100%;
    }

    body.theme-90s .profileStateMap svg{
      width: 100%;
      height: auto;
      display: block;
      transform: translateX(calc(-2.5% - 20px));
      transform-origin: top left;
    }

    body.theme-90s .profileStateMap .state{
      fill: #f3f4f6;
      stroke: #cbd5e1;
      stroke-width: 1;
      stroke-linejoin: round;
      stroke-linecap: round;
      vector-effect: non-scaling-stroke;
      transition: fill 0.2s ease, stroke 0.2s ease;
      pointer-events: auto;
      cursor: pointer;
    }

    body.theme-90s .profileStateMap .state.is-selected{
      fill: #dbeafe;
      stroke: #2563eb;
      stroke-width: 1.4;
      
    }

    body.theme-90s .profileStateMap .state.is-hovered:not(.is-selected){
      fill: #e2e8f0;
      stroke: #94a3b8;
    }

    body.theme-90s .profileStateMap .mapNote{
      font-size: 12px;
      color: var(--text-secondary);
    }

    
      body.theme-90s 60%{
        fill: #bfdbfe;
        stroke: #2563eb;
      }
      body.theme-90s 100%{
        fill: #dbeafe;
        stroke: #2563eb;
      }
    body.theme-90s }

    @media (prefers-reduced-motion: reduce){
      .profileStateMap .state.is-selected {
        
      }
    }

    body.theme-90s .leadProfileBadges{
      position: absolute;
      top: 8px;
      right: 8px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-end;
    }

    body.theme-90s .leadProfileBadge{
      background: #dcfce7;
      color: #166534;
      font-size: 10px;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 999px;
    }

    body.theme-90s .leadProfileBadge.isPaused{
      background: #ffedd5;
      color: #9a3412;
    }

    body.theme-90s .leadProfileBadge.isStale{
      background: #fee2e2;
      color: #991b1b;
    }

    body.theme-90s .leadProfileNotice{
      border: 1px solid #fde68a;
      background: #fffbeb;
      color: #92400e;
      font-size: 12px;
      padding: 8px 10px;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    body.theme-90s .leadProfileNotice.isError{
      border-color: #fecaca;
      background: #fef2f2;
      color: #991b1b;
    }

    body.theme-90s .leadProfileModalCard{
      max-width: 960px;
      width: min(960px, 94vw);
    }

    body.theme-90s .leadProfileWizard{
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 20px;
    }

    body.theme-90s .leadProfileSteps{
      display: grid;
      gap: 10px;
    }

    body.theme-90s .leadProfileStep{
      padding: 10px 12px;
      border-radius: 10px;
      font-size: 13px;
      color: var(--text-secondary);
      background: var(--bg-secondary);
      border: 1px solid transparent;
      cursor: pointer;
    }

    body.theme-90s .leadProfileStep.is-active{
      color: var(--text-primary);
      border-color: var(--border-color);
      background: white;
      font-weight: 600;
    }

    body.theme-90s .leadProfileStep.is-complete{
      color: var(--success);
      font-weight: 600;
    }

    body.theme-90s .leadProfileContent{
      display: grid;
      gap: 16px;
    }

    body.theme-90s .profileStepPane{
      display: none;
    }

    body.theme-90s .profileStepPane.active{
      display: block;
    }

    body.theme-90s .profileToggleGrid{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px 16px;
      align-items: center;
    }

    body.theme-90s .profileToggleGridHeader{
      font-size: 12px;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    body.theme-90s .profileToggleRow{
      display: contents;
    }

    body.theme-90s .profileToggleLabel{
      font-weight: 600;
      color: var(--text-primary);
    }

    body.theme-90s .profileStateNav{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    body.theme-90s .profileStateNavText{
      text-align: center;
    }

    body.theme-90s .profileStateNavBtn{
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border-color);
      background: white;
      cursor: pointer;
    }

    body.theme-90s .profileCapsTable{
      width: 100%;
      border-collapse: collapse;
      margin-top: 12px;
    }

    body.theme-90s .profileCapsTable th, body.theme-90s .profileCapsTable td{
      padding: 8px 10px;
      text-align: left;
      border-bottom: 1px solid var(--border-color);
      font-size: 13px;
    }

    body.theme-90s .profileCapsTable .input{
      max-width: 120px;
      width: 100%;
    }

    body.theme-90s .moneyInput{
      position: relative;
      width: 100%;
      display: inline-flex;
      align-items: center;
    }

    body.theme-90s .moneyInputPrefix{
      position: absolute;
      left: 10px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
      pointer-events: none;
    }

    body.theme-90s .moneyInput .input{
      padding-left: 22px;
    }

    body.theme-90s .profileCapsAvg{
      font-size: 12px;
      color: var(--text-secondary);
      margin-top: 4px;
    }


    body.theme-90s .profileDayList{
      display: grid;
      gap: 10px;
    }

    body.theme-90s .profileDayRow{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    body.theme-90s .profileScheduleRow{
      display: grid;
      grid-template-columns: minmax(120px, 1fr) 64px 140px 140px;
      align-items: center;
      gap: 12px;
    }

    body.theme-90s .profileScheduleToggle{
      justify-self: start;
    }

    body.theme-90s .profileScheduleRow .scheduleTimeInput{
      max-width: 140px;
      width: 100%;
    }

    body.theme-90s .scheduleTimeInput{
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum" 1;
      font-weight: 400;
      color: var(--text-primary);
      letter-spacing: 0;
    }

    body.theme-90s #taskEditTime{
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum" 1;
      letter-spacing: 0.3px;
      font-weight: 600;
    }

    body.theme-90s .profileDayLabel{
      font-weight: 600;
      color: var(--text-primary);
    }

    body.theme-90s .profileSpendTotal{
      font-size: 13px;
      color: var(--text-secondary);
      margin-top: 8px;
    }

    @media (max-width: 860px) {
      body.theme-90s .leadProfileWizard{
        grid-template-columns: 1fr;
      }
    }

    body.theme-90s .mutedNote{
      font-size: 13px;
      color: var(--text-secondary);
    }

    /* Multi-select dropdown (states) */
    body.theme-90s .msRow{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 14px;
    }

    body.theme-90s .msRow.single{
      grid-template-columns: 1fr;
    }

    @media (max-width: 720px) {
      body.theme-90s .msRow{ grid-template-columns: 1fr; }
    }

    body.theme-90s .msWrap{
      position: relative;
    }

    body.theme-90s #profileStatePicker{
      z-index: 30;
    }

    body.theme-90s .msButton{
      width: 100%;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 0 14px;
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-primary);
    }

    body.theme-90s .msButton:hover{
      border-color: var(--gray-300);
    }

    body.theme-90s .msCount{
      font-size: 12px;
      font-weight: 700;
      color: var(--text-secondary);
      padding: 2px 8px;
      border: 1px solid var(--border-color);
      border-radius: 999px;
      background: var(--bg-secondary);
    }

    body.theme-90s .msMenu{
      position: static;
      margin-top: 8px;
      margin-bottom: 0;
      background: white;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      max-height: 280px;
      overflow: auto;
      display: none;
      z-index: 200;
      padding: 8px;
    }

    body.theme-90s #profileStatePicker .msMenu{
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      margin-top: 0;
      z-index: 500;
    }

    body.theme-90s .msMenu.open{ display: block; }

    body.theme-90s .msSearch{
      position: sticky;
      top: 0;
      background: white;
      padding-bottom: 8px;
      margin-bottom: 8px;
      border-bottom: 1px solid var(--border-color);
    }

    body.theme-90s .msSearch input{
      width: 100%;
      height: 38px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 0 12px;
      font-size: 14px;
    }

    body.theme-90s .msItem{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 8px 10px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      user-select: none;
    }

    body.theme-90s .msItem:hover{
      background: var(--bg-secondary);
    }

    body.theme-90s .msItemLeft{
      display: flex;
      align-items: center;
      gap: 10px;
    }

    body.theme-90s .msCode{
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 12px;
      font-weight: 700;
      color: var(--gray-900);
      width: 38px;
    }

    body.theme-90s .msSelectedBox{
      min-height: 44px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      background: white;
      padding: 10px 12px;
      font-size: 14px;
      color: var(--text-secondary);
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    body.theme-90s .stateCapTable{
      margin-top: 14px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      overflow: hidden;
      background: white;
    }

    body.theme-90s .stateCapTable table{
      width: 100%;
      border-collapse: collapse;
    }

    body.theme-90s .stateCapTable th, body.theme-90s .stateCapTable td{
      padding: 10px 12px;
      border-bottom: 1px solid var(--gray-200);
      font-size: 13px;
    }

    body.theme-90s .stateCapTable th{
      text-align: left;
      background: var(--gray-50);
      color: var(--text-secondary);
      font-weight: 600;
    }

    body.theme-90s .stateSpendInput{
      width: 140px;
    }

    body.theme-90s .stateCapEmpty{
      color: var(--text-tertiary);
      font-style: italic;
    }

    body.theme-90s .bizCapsRow{
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 14px;
      margin-top: 14px;
      align-items: start;
    }

    body.theme-90s .bizStateTable td:last-child{
      text-align: right;
    }

    body.theme-90s .bizStateRow.isActive td{
      background: var(--blue-50);
    }

    body.theme-90s .bizStateBtn{
      white-space: nowrap;
    }

    body.theme-90s .bizStateBtn.isActive{
      background: var(--blue-600);
      border-color: var(--blue-600);
      color: #fff;
    }

    @media (max-width: 720px) {
      body.theme-90s .bizCapsRow{ grid-template-columns: 1fr; }
    }

    body.theme-90s .msPill{
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--blue-50);
      color: var(--blue-700);
      font-size: 12px;
      font-weight: 700;
      border: 1px solid var(--blue-100);
    }

    body.theme-90s #profileStateSelected{
      min-height: 36px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: center;
    }

    body.theme-90s .msEmpty{
      color: var(--text-tertiary);
      font-weight: 500;
      font-size: 13px;
    }

    body.theme-90s .totpQr{
      display: inline-flex;
      padding: 10px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      background: white;
    }


  
    body.theme-90s .storeGrid{
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    body.theme-90s .storeCard{
      border: 1px solid var(--border-color);
      border-radius: 14px;
      background: #fff;
      box-shadow: var(--shadow-sm);
      display: flex;
      gap: 18px;
      padding: 16px;
      align-items: stretch;
    }
    body.theme-90s .storeImage{
      flex: 0 0 240px;
      height: 200px;
      border-radius: 12px;
      background: var(--bg-tertiary);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow-xs);
    }
    body.theme-90s .storeBody{
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    body.theme-90s .storeTitle{
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
    }
    body.theme-90s .storePrice{
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
    }
    body.theme-90s .storeDesc{
      font-size: 13px;
      color: var(--text-secondary);
      line-height: 1.5;
    }
    body.theme-90s .storeDivider{
      height: 1px;
      width: 100%;
      background: var(--border-color);
      margin: 6px 0;
    }
    body.theme-90s .storeActions{
      margin-top: auto;
      padding-top: 8px;
    }
    body.theme-90s .storeBtn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 44px;
      background: #006aff;
      color: #fff;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset;
    }
    body.theme-90s .storeBtn:hover{
      background: #0056d6;
    }
    @media (max-width: 900px) {
      body.theme-90s .storeCard{
        flex-direction: column;
      }
      body.theme-90s .storeImage{
        width: 100%;
        flex: 0 0 auto;
        height: 220px;
      }
    }


    body.theme-90s .accountActionsRow{
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    body.theme-90s .accountActionsPrimary{
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    body.theme-90s .accountActionsDanger{
      margin-left: auto;
      text-align: right;
      max-width: 320px;
    }
    body.theme-90s .accountActionsDanger .mutedNote{
      text-align: right;
    }
    @media (max-width: 720px) {
      body.theme-90s .accountActionsRow{
        flex-direction: column;
        align-items: stretch;
      }
      body.theme-90s .accountActionsDanger{
        margin-left: 0;
        text-align: left;
      }
      body.theme-90s .accountActionsDanger .mutedNote{
        text-align: left;
      }
    }
/* ═══ KEYFRAME ANIMATIONS ═══ */

  body.theme-90s 14%{ color: #ff7700; }
  body.theme-90s 28%{ color: #ffff00; }
  body.theme-90s 42%{ color: #00ff00; }
  body.theme-90s 57%{ color: #00ffff; }
  body.theme-90s 71%{ color: #0088ff; }
  body.theme-90s 85%{ color: #ff00ff; }
  body.theme-90s 100%{ color: #ff0000; }
body.theme-90s }


  50%, body.theme-90s 100%{ opacity: 0; }
body.theme-90s }


  100%{ transform: translateX(-100%); }
body.theme-90s }


  to{ transform: rotate(360deg); }
body.theme-90s }


  50%{ opacity: 1;   transform: scale(1.2); }
body.theme-90s }


  50%{ background-position: 100% 50%; }
  body.theme-90s 100%{ background-position: 0% 50%; }
body.theme-90s }


  50%{ transform: rotate(2deg); }
body.theme-90s }


  33%{ border-color: #00ffff; box-shadow: 0 0 8px #00ffff; }
  body.theme-90s 66%{ border-color: #ffff00; box-shadow: 0 0 8px #ffff00; }
body.theme-90s }


  to{ background-position: 0 4px; }
body.theme-90s }

/* ═══ GLOBAL RESET & BASE ═══ */
*, body.theme-90s *::before, body.theme-90s *::after{ box-sizing: border-box; }
body.theme-90s, body.theme-90s{ height: 100%; }

body.theme-90s{
  --font-sans:    'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', cursive;
  --font-pixel:   'Press Start 2P', monospace;
  --font-terminal:'VT323', monospace;

  --bg-space:     #000011;
  --cyan:         #00ffff;
  --magenta:      #ff00ff;
  --yellow:       #ffff00;
  --lime:         #00ff44;
  --orange:       #ff8800;
  --silver:       #c0c0c0;
  --silver-light: #e8e8e8;
  --silver-dark:  #808080;
  --win95-face:   #d4d0c8;
  --win95-light:  #ffffff;
  --win95-shadow: #808080;
  --win95-dark:   #404040;
  --win95-blue:   #000080;

  /* Override tokens */
  --primary:        #0000cc;
  --primary-hover:  #0000ff;
  --success:        #008000;
  --warning:        #ff8800;
  --danger:         #cc0000;
  --text-primary:   #000000;
  --text-secondary: #333333;
  --text-tertiary:  #666666;
  --border-color:   #808080;
  --bg-primary:     var(--win95-face);
  --bg-secondary:   #c8c4bc;
  --bg-tertiary:    #b8b4ac;
  --shadow-xs: inset -1px -1px 0 var(--win95-dark), inset 1px 1px 0 var(--win95-light);
  --shadow-sm: 2px 2px 0 rgba(0,0,0,0.5);
  --shadow: 3px 3px 0 rgba(0,0,0,0.6);
  --shadow-md: 4px 4px 0 rgba(0,0,0,0.7);
  --shadow-lg: 6px 6px 0 rgba(0,0,0,0.8);
  --radius-sm: 0;
  --radius: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --gray-50:  #f0f0f0;
  --gray-100: #e0e0e0;
  --gray-200: #c8c4bc;
  --gray-900: #000000;
  --blue-50:  #0000aa;
  --blue-600: #0000cc;
  --green-600:#008000;
  --red-600:  #cc0000;
}

/* ─── ANIMATED STARFIELD BODY ─── */
body.theme-90s{
  font-family: var(--font-sans);
  background-color: var(--bg-space);
  background-image:
    /* Stars layer 1 — small */
    radial-gradient(1px 1px at 10% 8%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 23% 61%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 37% 14%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 77%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 33%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 71% 88%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 42%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 94% 19%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  53%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 91%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 38%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 96%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%,  white 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 69%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 79% 24%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 55%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 97% 80%, white 0%, transparent 100%),
    radial-gradient(1px 1px at 19% 44%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 33% 27%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 52% 64%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 74% 11%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 86% 73%, rgba(255,255,255,0.7) 0%, transparent 100%),
    /* Stars layer 2 — medium, blue-tinted */
    radial-gradient(2px 2px at 8%  22%, rgba(150,200,255,0.9) 0%, transparent 100%),
    radial-gradient(2px 2px at 31% 79%, rgba(150,200,255,0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 65% 48%, rgba(200,150,255,0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 6%,  rgba(150,200,255,0.9) 0%, transparent 100%),
    radial-gradient(2px 2px at 44% 85%, rgba(255,200,150,0.7) 0%, transparent 100%),
    /* Big bright stars */
    radial-gradient(3px 3px at 18% 55%, white 0%, transparent 100%),
    radial-gradient(3px 3px at 77% 33%, white 0%, transparent 100%),
    radial-gradient(3px 3px at 56% 90%, rgba(200,220,255,0.9) 0%, transparent 100%);
  color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: auto;
  cursor: crosshair;
}

/* ═════════════════════════════════════════
   APP WRAPPER
═════════════════════════════════════════ */
body.theme-90s .app{
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
  opacity: 1;
  transition: opacity 0.1s;
}

body.theme-90s.appLoading .app{ opacity: 0; }

/* ═════════════════════════════════════════
   HEADER — Windows 95 Title Bar + Rainbow Banner
═════════════════════════════════════════ */
body.theme-90s .header{
  background: var(--win95-face);
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 8px;
  display: block;
  flex-wrap: unset;
  gap: 0;
  overflow: hidden;
}

/* Rainbow gradient top banner */
body.theme-90s .header::before{
  content: '★ LEAD PORTAL 2000 ★ BEST VIEWED IN 800x600 ★ CLICK HERE TO WIN A FREE iPOD ★ VISITOR #000247 ★ LEAD PORTAL 2000 ★';
  display: block;
  background: linear-gradient(90deg, #ff0000, #ff7700, #ffff00, #00ff00, #00ffff, #0088ff, #ff00ff, #ff0000);
  background-size: 300% 100%;
  
  color: #000;
  font-family: var(--font-pixel);
  font-size: 8px;
  font-weight: 700;
  padding: 6px 0;
  text-align: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
}

/* Title bar row */
body.theme-90s .brand{
  background: linear-gradient(180deg, #0a0a80 0%, #0000c8 40%, #0000a0 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
}

body.theme-90s .brandLogo{
  width: 20px; height: 20px;
  background: linear-gradient(135deg, #ffff00, #ff8800, #ff0000);
  border-radius: 0;
  font-family: var(--font-pixel);
  font-size: 9px;
  font-weight: 400;
  color: #000;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 1px 1px 0 rgba(255,255,255,0.5);
  
}

body.theme-90s .brandText h1{
  font-family: var(--font-pixel);
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: 2px 2px 0 #000080;
}

body.theme-90s .brandText .subtitle{
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  margin-top: 0;
}

/* Nav row */
body.theme-90s .nav{
  background: var(--win95-face);
  border: none;
  border-radius: 0;
  padding: 4px 6px;
  gap: 4px;
  display: flex;
  border-bottom: 2px inset var(--win95-shadow);
}

body.theme-90s .navBtn{
  padding: 4px 14px;
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  transition: none;
  box-shadow: inset 0 0 0 1px transparent;
}

body.theme-90s .navBtn:hover{
  background: var(--win95-face);
  color: #000000;
}

body.theme-90s .navBtn:active, body.theme-90s .navBtn.active{
  border: 2px inset var(--win95-shadow);
  background: #b8b4ac;
  padding: 5px 13px 3px 15px;
}

body.theme-90s .navBtn.active{
  border: 2px inset var(--win95-shadow);
  background: #b8b4ac;
  padding: 4px 14px;
  text-decoration: underline;
  color: #000080;
}

body.theme-90s.crmLiteOff .navBtn[data-tab="tasks"]{ display: none; }

/* Account button area */
body.theme-90s .accountMenu{ position: relative; margin-left: auto; }

body.theme-90s .accountBtn{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  height: auto;
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

body.theme-90s .accountBtn:hover{ background: #d8d4cc; }

body.theme-90s .accountStatus{
  width: 10px; height: 10px;
  background: #00cc00;
  border-radius: 0;
  border: 1px solid #006600;
  box-shadow: none;
  
}

body.theme-90s .accountBadge{
  min-width: auto;
  height: auto;
  background: none;
  border: none;
  box-shadow: none;
  color: #000;
  font-weight: bold;
  font-size: 13px;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

body.theme-90s .accountChevron{ color: #333; width: 12px; height: 12px; }

/* Dropdown */
body.theme-90s .dropdown{
  border-radius: 0;
  border: 2px outset var(--win95-light);
  background: var(--win95-face);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  padding: 2px;
  top: calc(100% + 2px);
  right: 0;
}

body.theme-90s .dropdownItem{
  font-family: var(--font-sans);
  font-size: 13px;
  color: #000;
  padding: 6px 14px;
  border-radius: 0;
  font-weight: bold;
}

body.theme-90s .dropdownItem:hover{ background: var(--win95-blue); color: white; }
body.theme-90s .dropdownItem.danger{ color: #cc0000; }
body.theme-90s .dropdownItem.danger:hover{ background: #cc0000; color: white; }
body.theme-90s .dropdownDivider{ background: var(--win95-shadow); height: 1px; margin: 2px 4px; }

body.theme-90s .kbd{
  font-family: 'Courier New', monospace;
  font-size: 11px;
  padding: 1px 4px;
  background: var(--win95-face);
  border: 1px outset var(--win95-light);
  color: #000;
  border-radius: 0;
}

/* ═════════════════════════════════════════
   SCROLLING MARQUEE below header
═════════════════════════════════════════ */
body.theme-90s .app > .header + *{
  margin-top: 0;
}

/* Insert marquee after header via body::after pseudo */
body.theme-90s::after{
  content: '🌟 WELCOME TO LEAD PORTAL 2000!! 🌟   📧 CHECK YOUR E-MAIL DAILY   💰 NEW LEADS ARRIVING NOW   🏆 TOP AGENT THIS MONTH: YOU   🌟 CLICK HERE TO LEARN MORE   💾 SITE BEST VIEWED WITH JAVASCRIPT ENABLED   🌟 WELCOME TO LEAD PORTAL 2000!! 🌟';
  display: block;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #000080;
  color: #ffff00;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  padding: 4px 0;
  overflow: hidden;
  white-space: nowrap;
  z-index: 9999;
  
  border-top: 2px solid #0000cc;
}

/* ═════════════════════════════════════════
   CARDS — Windows 95 Raised Panels
═════════════════════════════════════════ */
body.theme-90s .card{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  overflow: visible;
}

body.theme-90s .cardHeader{
  background: linear-gradient(180deg, #0000c8 0%, #0000a8 100%);
  padding: 5px 10px;
  border-bottom: 2px inset var(--win95-shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Blue title bar dot decorations */
body.theme-90s .cardHeader::before{
  content: '■ ■ ■';
  font-size: 8px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  order: -1;
}

body.theme-90s .cardTitle{
  font-family: var(--font-pixel);
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow: 1px 1px 0 #000080;
  margin-bottom: 0;
  flex: 1;
}

body.theme-90s .cardSubtitle{
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  display: none; /* hidden in title bar style */
}

body.theme-90s .cardBody{
  padding: 14px 12px;
  background: var(--win95-face);
}

body.theme-90s .cardFooter{
  padding: 6px 12px;
  background: #b8b4ac;
  border-top: 2px inset var(--win95-shadow);
  font-family: var(--font-sans);
  font-size: 12px;
  color: #333;
}

/* Stat cards */
body.theme-90s .statCard{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  padding: 12px 14px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

body.theme-90s .statCard::after{
  content: '★';
  position: absolute;
  top: 4px; right: 8px;
  font-size: 22px;
  
  line-height: 1;
}

body.theme-90s .statCard.compact::after{ content: '✓';  color: #00cc00; font-size: 18px; }

body.theme-90s .statLabel{
  font-family: var(--font-pixel);
  font-size: 8px;
  font-weight: 400;
  color: #000080;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

body.theme-90s .statValue{
  font-family: var(--font-terminal);
  font-size: 52px;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 2px 2px 0 #888;
}

body.theme-90s .statChange{ font-size: 12px; font-weight: bold; margin-top: 8px; font-family: var(--font-sans); }
body.theme-90s .statChange.positive{ color: #006600; }
body.theme-90s .statChange.negative{ color: #cc0000; }

body.theme-90s .pauseStatus{
  font-family: var(--font-terminal);
  font-size: 36px;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.01em;
}

body.theme-90s .pauseNote{
  font-family: var(--font-sans);
  font-size: 11px;
  color: #444;
  font-style: italic;
}

body.theme-90s .metricValue{
  font-family: var(--font-terminal);
  font-size: 44px;
  color: #000080;
  font-weight: 400;
  letter-spacing: -0.01em;
}

body.theme-90s .metricMeta{
  font-family: var(--font-sans);
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-top: 2px;
}

/* ═════════════════════════════════════════
   TABLES — Classic 90s bordered grid
═════════════════════════════════════════ */
body.theme-90s .table{
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 13px;
  border: 2px inset var(--win95-shadow);
  background: white;
}

body.theme-90s .table thead{
  background: linear-gradient(180deg, #000080 0%, #0000c0 100%);
  border-bottom: 2px solid #0000ff;
}

body.theme-90s .table th{
  padding: 7px 12px;
  text-align: left;
  font-family: var(--font-pixel);
  font-size: 7px;
  font-weight: 400;
  color: #ffff00;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.theme-90s .table td{
  padding: 7px 12px;
  border-bottom: 1px solid #c0c0c0;
  border-right: 1px solid #c0c0c0;
  color: #000000;
  font-size: 13px;
  font-weight: normal;
}

body.theme-90s .table td:last-child{ border-right: none; }
body.theme-90s .table tbody tr:last-child td{ border-bottom: none; }

body.theme-90s .table tbody tr:nth-child(odd) td{ background: #e8f0ff; }
body.theme-90s .table tbody tr:nth-child(even) td{ background: #fff8e8; }

body.theme-90s .table tbody tr:hover td{
  background: #ffff88 !important;
}

body.theme-90s .tableLink{
  color: #0000cc;
  font-weight: bold;
  text-decoration: underline;
}
body.theme-90s .tableLink:hover{ color: #cc0000; }

/* ═════════════════════════════════════════
   BUTTONS — Win95 Beveled
═════════════════════════════════════════ */
body.theme-90s .btn{
  height: 28px;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: none;
  border: 2px outset var(--win95-light);
  background: var(--win95-face);
  color: #000;
  text-shadow: none;
  box-shadow: inset -1px -1px 0 var(--win95-dark), inset 1px 1px 0 var(--win95-light);
}

body.theme-90s .btn:hover{ background: #d4d0c8; }

body.theme-90s .btn:active{
  border: 2px inset var(--win95-shadow);
  padding: 1px 15px 0 17px;
  box-shadow: none;
}

body.theme-90s .btnPrimary{
  background: var(--win95-face);
  color: #000080;
  font-weight: bold;
  border: 3px outset var(--win95-light);
}

body.theme-90s .btnPrimary:hover{ background: #c0c0f0; color: #000080; transform: none; box-shadow: inset -1px -1px 0 var(--win95-dark), inset 1px 1px 0 var(--win95-light); }
body.theme-90s .btnPrimary:active{ border: 3px inset var(--win95-shadow); }
body.theme-90s .btnPrimary:disabled{ color: var(--win95-shadow); border: 2px outset var(--win95-light); }

body.theme-90s .btnSecondary{
  background: var(--win95-face);
  color: #000;
  border: 2px outset var(--win95-light);
}
body.theme-90s .btnSecondary:hover{ background: #d4d0c8; }

body.theme-90s .btnDanger{
  background: var(--win95-face);
  color: #cc0000;
  border: 2px outset var(--win95-light);
}
body.theme-90s .btnDanger:hover{ background: #ffd0d0; }

body.theme-90s .iconBtn{
  width: 26px; height: 26px;
  border-radius: 0;
  border: 2px outset var(--win95-light);
  background: var(--win95-face);
  color: #000;
  font-size: 15px;
  font-weight: bold;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: none;
  box-shadow: inset -1px -1px 0 var(--win95-dark), inset 1px 1px 0 var(--win95-light);
}
body.theme-90s .iconBtn:hover{ background: #c0c0f0; }

/* ═════════════════════════════════════════
   INPUTS — Sunken Win95 fields
═════════════════════════════════════════ */
body.theme-90s .input, body.theme-90s .select{
  background: white;
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 13px;
  height: 26px;
  padding: 0 6px;
  transition: none;
  width: 100%;
  box-shadow: none;
}

body.theme-90s .input:focus, body.theme-90s .select:focus{
  outline: 1px dotted #000080;
  outline-offset: -2px;
  border-color: var(--win95-shadow);
  box-shadow: none;
}

body.theme-90s .label{
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 4px;
}

body.theme-90s .textarea{
  background: white;
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
  color: #000;
  font-family: var(--font-sans);
  font-size: 13px;
  resize: vertical;
  padding: 6px;
}

body.theme-90s .textarea:focus{
  outline: 1px dotted #000080;
  border-color: var(--win95-shadow);
  box-shadow: none;
}

/* ═════════════════════════════════════════
   BADGES
═════════════════════════════════════════ */
body.theme-90s .badge{
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px;
  border-radius: 0;
  border: 1px solid;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.theme-90s .badge-new{ background: #c8d8ff; color: #000080; border-color: #0000cc; }
body.theme-90s .badge-contacted{ background: #fff0c8; color: #664400; border-color: #aa6600; }
body.theme-90s .badge-sold,
body.theme-90s .badge-won{ background: #c8ffd8; color: #006600; border-color: #008800; }
body.theme-90s .badge-lost{ background: #ffc8c8; color: #880000; border-color: #cc0000; }

body.theme-90s .badgeDot{ width: 6px; height: 6px; border-radius: 50%; background: currentColor;  }

body.theme-90s .winBadge{ border-radius: 0; font-size: 10px; font-weight: bold; border: 1px solid currentColor; padding: 1px 6px; }
body.theme-90s .categoryBadge{ background: #e0e0e0; color: #333; border: 1px solid #999; border-radius: 0; font-size: 10px; font-weight: bold; }

body.theme-90s .sourceBadge.oc{ background: #c8ffd8; color: #006600; border: 1px solid #008800; border-radius: 0; font-weight: bold; }
body.theme-90s .sourceBadge.external{ background: #e0e0e0; color: #444; border: 1px solid #888; border-radius: 0; font-weight: bold; }

/* ═════════════════════════════════════════
   LIVE FEED
═════════════════════════════════════════ */
body.theme-90s .liveViewItem{ font-size: 13px; color: #000080; font-family: var(--font-sans); }
body.theme-90s .liveViewDot{  }
body.theme-90s .liveViewText{ color: #000000; font-weight: bold; font-family: var(--font-sans); }
body.theme-90s .liveViewEmpty{ color: #888; font-style: italic; font-family: var(--font-sans); }
body.theme-90s .liveViewNote{ font-size: 11px; color: #666; font-style: italic; font-family: var(--font-sans); }

body.theme-90s .winItem{
  padding: 10px 0;
  border-bottom: 1px dotted #aaa;
  background: transparent;
  border-radius: 0;
  transition: none;
}

body.theme-90s .winItem::before{ background: #cc0000; width: 3px; left: -14px; border-radius: 0; }
body.theme-90s .winItem:hover{ background: #ffffcc; padding-left: 6px; padding-right: 6px; margin: 0 -6px; border-radius: 0; }
body.theme-90s .winItem:last-child{ border-bottom: none; }
body.theme-90s .winAmount{ font-size: 13px; font-weight: bold; color: #000; font-family: var(--font-sans); }
body.theme-90s .winDetails{ font-size: 12px; color: #555; font-family: var(--font-sans); }

/* ═════════════════════════════════════════
   SUB-NAV
═════════════════════════════════════════ */
body.theme-90s .subnav{
  display: inline-flex;
  gap: 3px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}

body.theme-90s .subnavBtn{
  padding: 3px 14px;
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: none;
  box-shadow: inset -1px -1px 0 var(--win95-dark), inset 1px 1px 0 var(--win95-light);
}

body.theme-90s .subnavBtn:hover{ background: #c0c0f0; color: #000080; }
body.theme-90s .subnavBtn.active{
  border: 2px inset var(--win95-shadow);
  background: #b8b4ac;
  color: #000080;
  font-weight: bold;
  box-shadow: none;
}

/* ═════════════════════════════════════════
   MODAL — Win95 Dialog Box
═════════════════════════════════════════ */
body.theme-90s .modalBackdrop{
  background: rgba(0,0,0,0.4);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.theme-90s .modalCard{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
}

body.theme-90s .modalHeader{
  background: linear-gradient(180deg, #0000c8, #0000a0);
  padding: 5px 10px;
  border-bottom: 2px inset var(--win95-shadow);
  display: flex;
  align-items: center;
}

body.theme-90s .modalHeader .cardTitle, body.theme-90s .modalHeader h3{
  font-family: var(--font-pixel);
  font-size: 9px;
  color: white;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Modal close X button style */
body.theme-90s .modalHeader::after{
  content: '✕';
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: bold;
  color: #000;
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  width: 18px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  line-height: 1;
}

body.theme-90s .modalBody{
  padding: 16px 14px;
  background: var(--win95-face);
}

body.theme-90s .modalFooter{
  padding: 10px 14px;
  border-top: 2px inset var(--win95-shadow);
  background: var(--win95-face);
  border-radius: 0;
}

/* ═════════════════════════════════════════
   TOGGLES
═════════════════════════════════════════ */
body.theme-90s .toggleTrack{
  background: #d0d0d0;
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
  width: 44px; height: 22px;
}

body.theme-90s .toggleThumb{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: none;
  width: 18px; height: 16px;
  transform: translateX(2px);
}

body.theme-90s .toggleSwitch input:checked + .toggleTrack{
  background: #a8ffa8;
  border-color: var(--win95-shadow);
}

body.theme-90s .toggleSwitch input:checked + .toggleTrack .toggleThumb{
  transform: translateX(22px);
  background: var(--win95-face);
}

/* ═════════════════════════════════════════
   ALERTS
═════════════════════════════════════════ */
body.theme-90s .alert-warning{
  background: #fffacd;
  color: #664400;
  border: 2px inset var(--win95-shadow);
  border-left: 4px solid #ff8800;
  border-radius: 0;
  font-family: var(--font-sans);
}

body.theme-90s .alert-error{
  background: #ffd0d0;
  color: #880000;
  border: 2px inset var(--win95-shadow);
  border-left: 4px solid #cc0000;
  border-radius: 0;
  font-family: var(--font-sans);
}

/* ═════════════════════════════════════════
   LEAD PROFILES CONSOLE
═════════════════════════════════════════ */
body.theme-90s .leadProfileAddBtn{
  border-radius: 0;
  border: 2px dashed #888;
  background: #e8e8e8;
  color: #444;
  font-family: var(--font-sans);
  font-size: 22px;
  transition: none;
}

body.theme-90s .leadProfileAddBtn:hover{
  border-style: solid;
  border-color: #000080;
  color: #000080;
  background: #d0d8ff;
  transform: none;
}

body.theme-90s .leadProfileCard{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  transition: none;
}

body.theme-90s .leadProfileCard:hover{
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
  border-color: var(--win95-light);
}

body.theme-90s .leadTypePanel{
  border: 2px inset var(--win95-shadow);
  background: #e8e4dc;
  border-radius: 0;
}

/* ═════════════════════════════════════════
   STATE / CAP TABLES
═════════════════════════════════════════ */
body.theme-90s .stateCapTable{
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
  background: white;
}

body.theme-90s .stateCapTable th{
  background: #000080;
  color: #ffff00;
  font-family: var(--font-pixel);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-90s .stateCapTable td{
  color: #000;
  border-bottom: 1px solid #c0c0c0;
}

body.theme-90s .profileCapsTable th{
  background: #000080;
  color: #ffff00;
  font-family: var(--font-pixel);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.theme-90s .profileCapsTable td{ border-bottom: 1px solid #c0c0c0; color: #000; }
body.theme-90s .profileCapsAvg{ font-size: 11px; color: #666; font-style: italic; font-family: var(--font-sans); }
body.theme-90s .stateCapEmpty{ color: #888; font-style: italic; }

/* ═════════════════════════════════════════
   MULTI-SELECT
═════════════════════════════════════════ */
body.theme-90s .msButton{
  background: white;
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
  color: #000;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: normal;
}

body.theme-90s .msButton:hover{ background: #f0f0ff; border-color: var(--win95-shadow); }

body.theme-90s .msMenu{
  background: white;
  border: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}

body.theme-90s .msSearch{ background: white; border-bottom: 2px inset var(--win95-shadow); }
body.theme-90s .msSearch input{ background: white; border: 2px inset var(--win95-shadow); color: #000; border-radius: 0; font-family: var(--font-sans); }
body.theme-90s .msItem{ border-radius: 0; }
body.theme-90s .msItem:hover{ background: #000080; color: white; }
body.theme-90s .msItem:hover .msCode{ color: white; }
body.theme-90s .msCode{ color: #000; font-family: 'Courier New', monospace; font-weight: bold; }

body.theme-90s .msPill{
  background: #c8d8ff;
  color: #000080;
  border: 1px solid #0000cc;
  border-radius: 0;
  font-size: 11px;
  font-weight: bold;
  font-family: var(--font-sans);
}

body.theme-90s .msCount{
  background: #e0e0e0;
  border: 1px solid #888;
  color: #333;
  border-radius: 0;
  font-weight: bold;
  font-size: 11px;
  font-family: var(--font-sans);
}

body.theme-90s .msSelectedBox{
  background: white;
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
  color: #666;
  font-family: var(--font-sans);
}

/* ═════════════════════════════════════════
   MINI SELECT
═════════════════════════════════════════ */
body.theme-90s .miniSelect{
  background: white;
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
  color: #000;
  font-family: var(--font-sans);
  font-size: 12px;
  height: 24px;
  padding: 0 4px;
}

/* ═════════════════════════════════════════
   TASK DRAWER — Side panel
═════════════════════════════════════════ */
body.theme-90s .taskDrawerBackdrop{ background: rgba(0,0,0,0.35); backdrop-filter: none; }

body.theme-90s .taskDrawerPanel{
  background: var(--win95-face);
  border-left: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: -4px 0 0 rgba(0,0,0,0.4);
}

body.theme-90s .taskDrawerHeader{
  background: linear-gradient(180deg, #0000c8, #0000a0);
  border-bottom: 2px inset var(--win95-shadow);
  padding: 5px 10px;
}

body.theme-90s .taskDrawerTitle{ font-family: var(--font-pixel); font-size: 9px; color: white; font-weight: 400; }
body.theme-90s .taskDrawerSubtitle{ color: rgba(255,255,255,0.7); font-size: 11px; font-family: var(--font-sans); }

/* Task reminder toast */
body.theme-90s .taskReminder{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}

body.theme-90s .taskReminderTitle{ font-weight: bold; color: #000080; font-family: var(--font-pixel); font-size: 8px; }
body.theme-90s .taskReminderMeta{ color: #444; font-size: 12px; font-family: var(--font-sans); }

body.theme-90s .taskReminderAction{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  color: #000;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: bold;
  border-radius: 0;
  padding: 3px 10px;
}

body.theme-90s .taskReminderClose{ color: #666; background: var(--win95-face); border: 2px outset var(--win95-light); width: 18px; height: 16px; font-size: 10px; border-radius: 0; }
body.theme-90s .taskReminderIcon{ background: #ffffcc; color: #cc6600; border: 2px inset var(--win95-shadow); border-radius: 0; width: 30px; height: 30px; }

/* ═════════════════════════════════════════
   BILLING / STORE
═════════════════════════════════════════ */
body.theme-90s .storeCard{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

body.theme-90s .storeImage{ border: 2px inset var(--win95-shadow); border-radius: 0; }
body.theme-90s .storeTitle{ font-family: var(--font-pixel); font-size: 11px; color: #000080; font-weight: 400; line-height: 1.6; }
body.theme-90s .storePrice{ font-family: var(--font-terminal); font-size: 28px; color: #008800; font-weight: 400; }
body.theme-90s .storeDesc{ color: #333; font-family: var(--font-sans); }
body.theme-90s .storeDivider{ background: var(--win95-shadow); }

body.theme-90s .storeBtn{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
  font-family: var(--font-sans);
  font-weight: bold;
  color: #000080;
  font-size: 13px;
  text-transform: none;
  box-shadow: inset -1px -1px 0 var(--win95-dark), inset 1px 1px 0 var(--win95-light);
}

body.theme-90s .storeBtn:hover{ background: #c0c0f0; }

/* ═════════════════════════════════════════
   ACCOUNT / SETTINGS PAGE
═════════════════════════════════════════ */
body.theme-90s .profileSectionLabel{
  font-family: var(--font-pixel);
  font-size: 8px;
  font-weight: 400;
  color: #000080;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid #000080;
  padding-bottom: 6px;
  margin-bottom: 14px;
}

body.theme-90s .profileInput{
  background: white;
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
  color: #000;
  height: 26px;
  font-family: var(--font-sans);
}

body.theme-90s .profileTwofa, body.theme-90s .profileExport{
  background: #e8e4dc;
  border: 2px inset var(--win95-shadow);
  border-radius: 0;
}

body.theme-90s .profileTwofaTitle, body.theme-90s .profileExportTitle{ font-weight: bold; color: #000; font-family: var(--font-sans); }
body.theme-90s .profileTwofaDesc, body.theme-90s .profileExportDesc{ color: #555; font-family: var(--font-sans); }

body.theme-90s .profileBadge{
  background: #e0e0e0;
  border: 1px solid #888;
  color: #333;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: bold;
}

body.theme-90s .totpQr{ border: 2px inset var(--win95-shadow); border-radius: 0; background: white; }

/* ═════════════════════════════════════════
   SCHEDULE
═════════════════════════════════════════ */
body.theme-90s .scheduleRecommendBtn{
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: bold;
  color: #0000cc;
  text-decoration: underline;
}

body.theme-90s .scheduleRecommendBtn:hover{ color: #cc0000; text-decoration: underline; }
body.theme-90s .scheduleTz{ font-size: 11px; color: #444; font-family: var(--font-sans); font-style: italic; }

/* ═════════════════════════════════════════
   MISC
═════════════════════════════════════════ */

/* Scrollbar — thick and chunky Win95 style */
body.theme-90s ::-webkit-scrollbar{ width: 16px; height: 16px; }
body.theme-90s ::-webkit-scrollbar-track{ background: var(--win95-face); border: 1px inset var(--win95-shadow); }
body.theme-90s ::-webkit-scrollbar-thumb{ background: var(--win95-face); border: 2px outset var(--win95-light); box-shadow: inset -1px -1px 0 var(--win95-dark), inset 1px 1px 0 var(--win95-light); border-radius: 0; }
body.theme-90s ::-webkit-scrollbar-button{ background: var(--win95-face); border: 2px outset var(--win95-light); display: block; height: 16px; width: 16px; }

body.theme-90s .footer{
  color: #cccccc;
  font-size: 11px;
  font-family: var(--font-sans);
  text-align: center;
  padding-bottom: 40px; /* space for marquee bar */
}

body.theme-90s .footer a{ color: #88aaff; }

body.theme-90s .mutedNote{ color: #555; font-family: var(--font-sans); }
body.theme-90s .infoLabel{ font-family: var(--font-pixel); font-size: 7px; letter-spacing: 0.12em; text-transform: uppercase; color: #000080; }
body.theme-90s .infoValue{ font-size: 14px; font-weight: bold; color: #000; font-family: var(--font-sans); }

body.theme-90s .crmLiteHint{ font-size: 12px; color: #666; font-family: var(--font-sans); font-style: italic; }

body.theme-90s .bodyTooltip{
  background: #ffffcc;
  border: 2px outset var(--win95-light);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
  color: #000;
}

body.theme-90s .bodyTooltipArrow{ border-top-color: #ffffcc; }

body.theme-90s .takingMiniCard{
  background: var(--win95-face);
  border: 2px outset var(--win95-light);
  border-radius: 0;
}

body.theme-90s .takingMiniTitle{ font-weight: bold; color: #000; font-size: 12px; font-family: var(--font-sans); }
body.theme-90s .takingMiniMeta{ color: #555; font-size: 11px; font-family: var(--font-sans); }

body.theme-90s .typeCapLabel{ color: #333; font-size: 12px; font-family: var(--font-sans); }
body.theme-90s .typeCapWarn{ color: #cc0000; font-weight: bold; font-family: var(--font-sans); }
body.theme-90s .currencySymbol{ color: #444; font-weight: bold; }
body.theme-90s .statePrice{ color: #333; }

body.theme-90s .bizStateBtn.isActive{ background: #000080; border-color: #000080; color: #ffff00; font-weight: bold; }
body.theme-90s .profileStateNavBtn{ background: var(--win95-face); border: 2px outset var(--win95-light); border-radius: 0; color: #000; font-weight: bold; font-family: var(--font-sans); }
body.theme-90s .profileStateNavBtn:hover{ background: #c0c0f0; }

body.theme-90s .profileDayLabel{ color: #000; font-weight: bold; font-family: var(--font-sans); }
body.theme-90s .profileSpendTotal{ color: #444; font-size: 12px; font-family: var(--font-sans); }

body.theme-90s .crmLiteBubble{ background: #f8f4ec; border: 2px inset var(--win95-shadow); border-radius: 0; }
body.theme-90s .crmLiteLabel{ color: #000; font-weight: bold; font-family: var(--font-sans); }
body.theme-90s .crmLiteText{ color: #333; font-family: var(--font-sans); }
body.theme-90s .crmLiteList{ color: #000; font-family: var(--font-sans); }

body.theme-90s .autocompleteList{
  background: white;
  border: 2px outset var(--win95-light);
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}

body.theme-90s .autocompleteItem{ color: #000; background: white; font-family: var(--font-sans); }
body.theme-90s .autocompleteItem:hover{ background: #000080; color: white; }
body.theme-90s .autocompleteMeta{ color: #555; }

body.theme-90s .leadProfileStep.active{ color: #cc0000; font-weight: bold;  }
body.theme-90s .leadProfileStep.done{ color: #008800; font-weight: bold; }

/* Blinking cursor after metricValue */
body.theme-90s .metricValue::after{
  content: '█';
  
  font-size: 0.7em;
  color: #000080;
  margin-left: 2px;
}

/* Rainbow heading on card titles inside the body */
body.theme-90s .cardBody .cardTitle{
  
  font-family: var(--font-pixel);
  font-size: 9px;
}

/* "Under construction" gif-style star at h2 level */
body.theme-90s h2.cardTitle::before{
  content: '★ ';
  
}

body.theme-90s h2.cardTitle::after{
  content: ' ★';
  
  
}

/* Selection */
body.theme-90s ::selection{ background: #000080; color: #ffff00; }

/* Give the app body some bottom padding for the marquee */
body.theme-90s .app{ padding-bottom: 48px; }

/* Filters */
body.theme-90s .filters .searchInput input{ font-family: var(--font-sans); }
body.theme-90s .searchIcon{ color: #888; }

/* Subnav section header before contact tabs */
body.theme-90s .contactsHeaderRow{ border-bottom: 2px solid #000080; padding-bottom: 6px; margin-bottom: 0; }

/* CrmLite notice */
body.theme-90s .crmLiteNotice{ color: #cc0000; font-weight: bold; }

/* Blinking update indicator on live view title */
body.theme-90s #liveViewTitle::before{ content: '● '; color: #00cc00;  font-size: 0.7em; }

/* Pause button area styling */
body.theme-90s .pauseRow .toggleSwitch .toggleTrack{  }

body.theme-90s .header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    'brand account'
    'nav nav';
  align-items: center;
}
body.theme-90s .brand { grid-area: brand; }
body.theme-90s .nav { grid-area: nav; }
body.theme-90s .accountMenu { grid-area: account; justify-self: end; }
@media (max-width: 720px) {
  body.theme-90s .header {
    grid-template-columns: 1fr;
    grid-template-areas:
      'brand'
      'nav'
      'account';
  }
  body.theme-90s .accountMenu { justify-self: start; margin-top: 8px; }
}


/* 90s header layout: account aligned with nav */
body.theme-90s .header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    'brand brand'
    'nav account';
  align-items: center;
  position: relative;
  z-index: 20;
}
body.theme-90s .brand { grid-area: brand; }
body.theme-90s .nav { grid-area: nav; align-self: center; }
body.theme-90s .accountMenu { grid-area: account; justify-self: end; align-self: center; z-index: 25; }
body.theme-90s .accountMenu .dropdown { z-index: 30; }
@media (max-width: 720px) {
  body.theme-90s .header {
    grid-template-columns: 1fr;
    grid-template-areas:
      'brand'
      'nav'
      'account';
  }
  body.theme-90s .accountMenu { justify-self: start; margin-top: 8px; }
}


/* 90s nav-row account fix (force override) */
body.theme-90s .header {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  grid-template-areas:
    'brand brand'
    'nav account' !important;
  align-items: center !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 50 !important;
}
body.theme-90s .brand { grid-area: brand !important; }
body.theme-90s .nav { grid-area: nav !important; align-self: center !important; }
body.theme-90s .accountMenu {
  grid-area: account !important;
  justify-self: end !important;
  align-self: center !important;
  margin-left: 0 !important;
  position: relative !important;
  z-index: 60 !important;
}
body.theme-90s .accountMenu .dropdown { z-index: 70 !important; }
@media (max-width: 720px) {
  body.theme-90s .header {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      'brand'
      'nav'
      'account' !important;
  }
  body.theme-90s .accountMenu { justify-self: start !important; margin-top: 8px !important; }
}


/* 90s header layout: nav full width, account on nav row */
body.theme-90s .header {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto auto !important;
  grid-template-areas:
    'brand brand'
    'nav account' !important;
  align-items: center !important;
  overflow: visible !important;
  position: relative !important;
  z-index: 50 !important;
}
body.theme-90s .brand { grid-column: 1 / -1 !important; grid-row: 1 !important; }
body.theme-90s .nav {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  justify-self: stretch !important;
  width: 100% !important;
  display: flex !important;
  flex-wrap: nowrap !important;
}
body.theme-90s .accountMenu {
  grid-column: 2 !important;
  grid-row: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  z-index: 70 !important;
}
body.theme-90s .accountMenu .dropdown { z-index: 80 !important; }
@media (max-width: 720px) {
  body.theme-90s .header {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      'brand'
      'nav'
      'account' !important;
  }
  body.theme-90s .nav { flex-wrap: wrap !important; }
  body.theme-90s .accountMenu { justify-self: start !important; margin-top: 8px !important; }
}


/* 90s responsive width */
body.theme-90s .app {
  max-width: 1400px !important;
  width: 100% !important;
}
