/* VisionOS-Inspired Premium Polish - Apple Tahoe Design Language */

/* ===== CRITICAL TEXT VISIBILITY FIXES ===== */
/* Override muted colors with HIGH CONTRAST */

/* ALL subtle/secondary text - make it readable */
.section-subtle,
.helper-card .section-subtle,
.rail-card .section-subtle,
.help-card .section-subtle,
p.hero-subtitle,
.search-helper,
.hero-subtitle,
.category-group-count,
.category-item-sub,
.hero-issue-sub,
.quick-tool-label,
.section-subtitle,
.guided-option-abbrev {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ALL titles and headings - pure white */
.section-title,
.rail-title,
h2, h3, h4, strong,
.hero-title,
.category-title,
.help-card h4,
.section-title-premium,
.category-group-title,
.category-item-title,
.hero-issue-title,
.guided-option-name {
  color: #fff !important;
}

/* Primary text - high contrast */
body,
p,
span,
div,
label,
.text,
.description {
  color: rgba(255, 255, 255, 0.92);
}

/* Fix the light cards with dark text */
.helper-card,
.rail-card,
.help-card,
.tip-card,
details.builder-premium summary,
details.builder-premium > div {
  background: rgba(13, 27, 61, 0.95) !important;
  border-color: rgba(0, 180, 255, 0.25) !important;
  color: #fff !important;
}

.tip-card {
  background: rgba(0, 180, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(0, 180, 255, 0.25) !important;
}

.tip-card,
.tip-card * {
  color: rgba(255, 255, 255, 0.95) !important;
}

.help-card ul li {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix help card buttons */
.help-link,
.help-card button,
.help-actions button {
  background: rgba(0, 180, 255, 0.2) !important;
  color: #fff !important;
  border: 1px solid rgba(0, 180, 255, 0.3) !important;
}

/* Input fields - ensure visible text */
input,
textarea,
select,
.input-field {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Buttons - make text pop */
.btn-primary,
.btn-secondary,
button {
  color: #fff !important;
}

/* Recent searches text fix */
.recent-list,
.recent-list * {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Category items hover state - ensure text stays visible */
.category-item:hover .category-item-title,
.category-item:hover .category-item-sub {
  color: #fff !important;
}

/* Hero issue buttons */
.hero-issue-btn .hero-issue-title {
  color: #fff !important;
}

.hero-issue-btn .hero-issue-sub {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Work order section styling for JFP users */
.wo-lookup-prominent {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15) 0%, rgba(0, 100, 200, 0.1) 100%) !important;
  border: 2px solid rgba(0, 180, 255, 0.4) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-bottom: 24px !important;
}

.wo-lookup-prominent .wo-title {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

.wo-lookup-prominent input {
  flex: 1;
  padding: 14px 16px !important;
  font-size: 16px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  color: #fff !important;
}

.wo-lookup-prominent .btn-primary {
  padding: 14px 28px !important;
  background: var(--accent-gradient) !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
}

/* Badge for JFP users */
.jfp-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 180, 255, 0.15);
  border: 1px solid rgba(0, 180, 255, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 12px;
}

:root {
  /* VisionOS Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-blur: 40px;
  --glass-blur-heavy: 80px;

  /* Refined Shadows - Layered for Depth */
  --shadow-ambient: 0 2px 40px rgba(0, 0, 0, 0.4);
  --shadow-elevation-1: 0 4px 16px rgba(0, 0, 0, 0.2), 0 1px 4px rgba(0, 0, 0, 0.1);
  --shadow-elevation-2: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-elevation-3: 0 16px 48px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 60px rgba(0, 180, 255, 0.15);
  --shadow-glow-strong: 0 0 80px rgba(0, 180, 255, 0.25);

  /* Premium Color Palette */
  --accent-gradient: linear-gradient(135deg, #00D4FF 0%, #0099FF 50%, #0066FF 100%);
  --accent-gradient-hover: linear-gradient(135deg, #33DDFF 0%, #00AAFF 50%, #0077FF 100%);
  --surface-gradient: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);

  /* Refined Typography */
  --font-display: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-text: 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  /* Smooth Easing */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ===== AMBIENT BACKGROUND ===== */
body {
  background: radial-gradient(ellipse 150% 100% at 50% -20%, #0D1B3D 0%, #060B1A 50%, #030508 100%);
  min-height: 100vh;
}

.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 180, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(100, 50, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0, 100, 200, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-elevation-2), var(--shadow-glow);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-elevation-3), var(--shadow-glow-strong);
  transform: translateY(-4px);
}

/* ===== PREMIUM HERO SECTION ===== */
.hero-card-premium {
  background: linear-gradient(135deg, rgba(13, 27, 61, 0.8) 0%, rgba(6, 11, 26, 0.9) 100%);
  backdrop-filter: blur(var(--glass-blur-heavy));
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: 28px;
  padding: 32px;
  box-shadow:
    var(--shadow-elevation-3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 100px rgba(0, 180, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 180, 255, 0.4) 50%, transparent 100%);
}

.hero-card-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 180, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== HIERARCHICAL ISSUE CATEGORIES ===== */
.issue-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.category-group:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 180, 255, 0.2);
}

.category-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.category-group-header:hover {
  background: rgba(0, 180, 255, 0.05);
}

.category-group-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.category-group-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15) 0%, rgba(0, 100, 200, 0.1) 100%);
  border: 1px solid rgba(0, 180, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 180, 255, 0.1);
}

.category-group-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.category-group-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.category-group-chevron {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s var(--ease-smooth);
}

.category-group.expanded .category-group-chevron {
  transform: rotate(180deg);
}

.category-group-content {
  display: none;
  padding: 0 12px 12px;
}

.category-group.expanded .category-group-content {
  display: block;
  animation: slideDown 0.3s var(--ease-out-expo);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}

.category-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  text-align: left;
}

.category-item:hover {
  background: rgba(0, 180, 255, 0.1);
  border-color: rgba(0, 180, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 180, 255, 0.15);
}

.category-item:active {
  transform: scale(0.98);
}

.category-item-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.category-item-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== PREMIUM SEARCH INPUT ===== */
.search-premium {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.search-premium:focus-within {
  border-color: rgba(0, 180, 255, 0.5);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(0, 180, 255, 0.1),
    0 0 30px rgba(0, 180, 255, 0.1);
}

.search-premium input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  padding: 14px 16px;
  font-family: var(--font-text);
}

.search-premium input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.search-premium-btn {
  background: var(--accent-gradient);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 16px rgba(0, 180, 255, 0.3);
}

.search-premium-btn:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 180, 255, 0.4);
}

.search-premium-btn:active {
  transform: scale(0.98);
}

/* ===== QUICK TOOLS GRID ===== */
.quick-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.quick-tool-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
}

.quick-tool-btn:hover {
  background: rgba(0, 180, 255, 0.08);
  border-color: rgba(0, 180, 255, 0.25);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 180, 255, 0.15);
}

.quick-tool-btn:active {
  transform: scale(0.97);
}

.quick-tool-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.12) 0%, rgba(0, 100, 200, 0.08) 100%);
  border: 1px solid rgba(0, 180, 255, 0.15);
}

.quick-tool-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* ===== FLOATING ORBS ANIMATION ===== */
@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(10px, -20px) scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-5px, -10px) scale(0.95);
    opacity: 0.6;
  }
  75% {
    transform: translate(15px, 5px) scale(1.05);
    opacity: 0.55;
  }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 180, 255, 0.1);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: rgba(100, 50, 255, 0.08);
  bottom: -50px;
  left: -50px;
  animation-delay: -7s;
}

/* ===== SECTION TITLES ===== */
.section-title-premium {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  font-weight: 400;
}

/* ===== MICRO-INTERACTIONS ===== */
.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.ripple-effect:active::after {
  width: 200px;
  height: 200px;
  opacity: 1;
  transition: 0s;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .hero-card-premium {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .category-items {
    grid-template-columns: 1fr 1fr;
  }

  .quick-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-premium-btn {
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .category-items {
    grid-template-columns: 1fr;
  }

  .quick-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== LOADING STATES ===== */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== GUIDED ISSUE MODAL ===== */
.guided-issue-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
  padding: 20px;
}

.guided-issue-modal.active {
  opacity: 1;
  visibility: visible;
}

.guided-issue-card {
  width: 100%;
  max-width: 520px;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s var(--ease-spring);
}

.guided-issue-modal.active .guided-issue-card {
  transform: translateY(0) scale(1);
}

.guided-issue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guided-issue-body {
  padding: 24px;
}

.guided-issue-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guided-step {
  animation: fadeIn 0.3s ease;
}

.guided-step + .guided-step {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.guided-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.guided-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}

.guided-option:hover {
  background: rgba(0, 180, 255, 0.08);
  border-color: rgba(0, 180, 255, 0.3);
  transform: translateY(-2px);
}

.guided-option.selected {
  background: rgba(0, 180, 255, 0.15);
  border-color: rgba(0, 180, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 180, 255, 0.2);
}

.guided-option-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.guided-option-abbrev {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== HERO CARD ISSUE BUTTONS (Top Level) ===== */
.hero-issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.hero-issue-btn {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  text-align: center;
}

.hero-issue-btn:hover {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.12) 0%, rgba(0, 100, 200, 0.08) 100%);
  border-color: rgba(0, 180, 255, 0.3);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 180, 255, 0.2);
}

.hero-issue-btn:active {
  transform: scale(0.98);
}

.hero-issue-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15) 0%, rgba(0, 100, 200, 0.1) 100%);
  border: 1px solid rgba(0, 180, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 180, 255, 0.15);
}

.hero-issue-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.hero-issue-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ===== LOADING SPINNER ===== */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(0, 180, 255, 0.9);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== ADDITIONAL TEXT VISIBILITY ===== */
/* Fix any remaining muted text */
.mobile-menu-item span,
.mobile-menu-title,
.mobile-menu-section label,
details summary,
details summary div {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix collapsible details */
details {
  color: #fff !important;
}

details summary {
  color: #fff !important;
}

/* Footer text visibility */
footer,
footer * {
  color: rgba(255, 255, 255, 0.85);
}

footer strong {
  color: rgba(255, 255, 255, 1) !important;
}

/* Search suggestions */
.suggestions-row,
.suggestions-row * {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Modal/overlay text */
.modal,
.modal * {
  color: rgba(255, 255, 255, 0.92);
}

/* Status text */
#online-status,
#status-text {
  color: rgba(255, 255, 255, 0.85) !important;
}
