/* ==========================================================================
   DólarCR Premium Design System (Vanilla CSS)
   ========================================================================== */

/* Color Variables and Tokens */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fintech Color Palette (HSL for Harmonious Mixing) */
  --bg-main: #080c14;
  --bg-card: rgba(13, 20, 35, 0.65);
  --bg-card-hover: rgba(20, 30, 50, 0.8);
  --border-glass: rgba(255, 255, 255, 0.07);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  /* Accent Colors */
  --color-green: #10b981;
  --color-green-glow: rgba(16, 185, 129, 0.15);
  --color-purple: #8b5cf6;
  --color-purple-glow: rgba(139, 92, 246, 0.15);
  --color-blue: #3b82f6;
  --color-blue-glow: rgba(59, 130, 246, 0.15);
  --color-gold: #f59e0b;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
  --shadow-green: 0 8px 30px 0 rgba(16, 185, 129, 0.2);
  --shadow-purple: 0 8px 30px 0 rgba(139, 92, 246, 0.2);
}

/* Global Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Beautiful Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

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

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

/* Glowing Background Blobs */
.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

.bg-blur-1 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--color-blue-glow) 0%, transparent 70%);
  top: -10vw;
  right: -10vw;
}

.bg-blur-2 {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--color-green-glow) 0%, transparent 70%);
  bottom: -15vw;
  left: -10vw;
}

.bg-blur-3 {
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, var(--color-purple-glow) 0%, transparent 70%);
  top: 30%;
  left: 30%;
  transform: translate(-50%, -50%);
}

/* Shared Premium Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

/* Main Container Layout */
.app-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeIn 0.8s ease-out;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.logo-icon i {
  width: 24px;
  height: 24px;
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-text h1 span {
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Sync Panel Styles */
.sync-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1.25rem;
}

.sync-info {
  display: flex;
  flex-direction: column;
}

.sync-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pulse-dot.green {
  background-color: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
  animation: pulseGreen 2s infinite;
}

.pulse-dot.orange {
  background-color: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold);
  animation: pulseOrange 2s infinite;
}

.sync-text {
  font-size: 0.85rem;
  font-weight: 600;
}

.sync-time {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--color-blue), var(--color-purple));
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-update i {
  width: 16px;
  height: 16px;
  transition: transform 0.5s ease;
}

.btn-update.loading i {
  animation: spin 1s linear infinite;
}

/* ==========================================================================
   Hero Section (Premium Cards)
   ========================================================================== */
.hero-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.recommend-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.recommend-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-size: cover;
}

/* Dynamic glowing border matching card theme on hover */
.sell-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-green), var(--shadow-premium);
}

.buy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: var(--shadow-purple), var(--shadow-premium);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.green-badge {
  background-color: rgba(16, 185, 129, 0.12);
  color: var(--color-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.purple-badge {
  background-color: rgba(139, 92, 246, 0.12);
  color: var(--color-purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.card-badge i {
  width: 14px;
  height: 14px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.card-bank-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-showcase {
  margin-bottom: 1.5rem;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.green-text {
  color: var(--color-green);
  text-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
}

.purple-text {
  color: var(--color-purple);
  text-shadow: 0 0 25px rgba(139, 92, 246, 0.2);
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.card-footer-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-glass);
  padding-top: 1rem;
}

.card-footer-info i {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Historical Chart Section
   ========================================================================== */
.charts-section {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 0.9s ease-out;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title-area i {
  width: 24px;
  height: 24px;
  color: var(--color-blue);
}

.section-title-area h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}

.chart-controls {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.3rem;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
}

.btn-chart-toggle {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-chart-toggle.active {
  background: var(--bg-main);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-chart-toggle:hover:not(.active) {
  color: white;
}

.chart-container {
  position: relative;
  width: 100%;
  height: 350px;
}

/* ==========================================================================
   Rates Table & Filters Section
   ========================================================================== */
.table-section {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

/* Table Toolbar Controls */
.table-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 450px;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.search-box input {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.search-box input:focus {
  outline: none;
  border-color: var(--color-blue);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.search-box input:focus + .search-icon {
  color: var(--color-blue);
}

.filter-box {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-filter {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-filter:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: var(--border-glass-hover);
}

.btn-filter.active {
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-blue);
  border-color: rgba(59, 130, 246, 0.35);
  font-weight: 600;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.05);
}

/* Table Styling */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 15px;
  border: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.1);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.rates-table th {
  background: rgba(13, 20, 35, 0.9);
  padding: 1.1rem 1.25rem;
  color: white;
  font-weight: 600;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sortable-header {
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.sortable-header:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--color-blue) !important;
}

.sort-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  font-size: 0.8rem;
  color: var(--color-blue);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.sortable-header:hover .sort-icon {
  opacity: 1;
}

.rates-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
  color: white;
}

/* Category styling inside tables */
.entity-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.entity-badge.badge-public {
  background-color: rgba(59, 130, 246, 0.08);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.15);
}

.entity-badge.badge-private {
  background-color: rgba(139, 92, 246, 0.08);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.15);
}

.entity-badge.badge-coop {
  background-color: rgba(245, 158, 11, 0.08);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.15);
}

/* Price highlighting inside table cells */
.rate-number {
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
}

.rate-number.buy-highlight {
  color: var(--color-green);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.rate-number.sell-highlight {
  color: var(--color-purple);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.1);
}

.spread-val {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

/* Loading & Empty states */
.table-loading {
  text-align: center;
  padding: 4rem 2rem !important;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(59, 130, 246, 0.1);
  border-top: 3px solid var(--color-blue);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: spin 1s linear infinite;
}

.table-loading p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.no-results {
  text-align: center;
  padding: 3rem 2rem !important;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.no-results i {
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.table-footer {
  display: flex;
  justify-content: flex-end;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.app-footer {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid var(--border-glass);
  margin-top: 1rem;
  animation: fadeIn 1.2s ease-out;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.app-footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.source-info {
  font-size: 0.75rem !important;
  max-width: 800px;
  margin: 0 auto;
}

.source-info strong {
  color: var(--text-secondary);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes pulseOrange {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */
@media (max-width: 900px) {
  .app-container {
    padding: 1.5rem 1rem;
    gap: 1.75rem;
  }

  .app-header {
    flex-direction: column;
    align-items: stretch;
  }

  .sync-panel {
    justify-content: space-between;
  }

  .charts-section, .table-section {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .logo-area {
    justify-content: center;
  }
  
  .sync-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }

  .sync-info {
    align-items: center;
    text-align: center;
  }

  .btn-primary {
    justify-content: center;
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .recommend-card {
    padding: 1.5rem;
  }

  .price-value {
    font-size: 2.8rem;
  }

  .section-header {
    flex-direction: column;
    align-items: stretch;
  }

  .chart-controls {
    justify-content: center;
  }

  .table-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    max-width: 100%;
  }

  .filter-box {
    justify-content: center;
  }

  .btn-filter {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   Toast Notification System (Fintech Glowing Style)
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
  max-width: 400px;
  width: calc(100vw - 3rem);
}

.toast {
  background: rgba(10, 16, 28, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  animation: toastSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  line-height: 1.4;
}

.toast i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.toast.success {
  border-color: rgba(16, 185, 129, 0.35);
  color: #fff;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15), var(--shadow-premium);
}

.toast.success i {
  color: var(--color-green);
}

.toast.warning {
  border-color: rgba(245, 158, 11, 0.35);
  color: #fff;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15), var(--shadow-premium);
}

.toast.warning i {
  color: var(--color-gold);
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.35);
  color: #fff;
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15), var(--shadow-premium);
}

.toast.error i {
  color: #ef4444;
}

.toast.fade-out {
  animation: toastFadeOut 0.4s ease forwards;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastFadeOut {
  to {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
}

@media (max-width: 600px) {
  .toast-container {
    top: auto;
    bottom: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    width: auto;
  }
  
  @keyframes toastSlideIn {
    from {
      opacity: 0;
      transform: translateY(50px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

/* ==========================================================================
   FAQ Section (Accordion Glass Style)
   ========================================================================== */
.faq-section {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 1.1s ease-out;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item[open] {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.05);
}

.faq-question {
  padding: 1.1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none; /* Hide default browser marker */
}

/* Hide webkit default marker */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-blue);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-answer li {
  margin-bottom: 0.4rem;
}

.faq-answer li strong {
  color: white;
}
