/* Dark theme adaptations */
.bg-light {
  background-color: var(--surface-dark) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.1);
}

.table-dark {
  --bs-table-bg: var(--dark-slate);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: var(--dark-navy);
  border-bottom: 2px solid var(--primary-coral);
}

.card {
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.badge {
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.alert-info {
  background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(52, 152, 219, 0.1));
  border-left: 4px solid var(--accent-cyan);
  color: var(--text-light);
}

.list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.list-check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: bold;
  font-size: 1.2rem;
}