/* Dark theme adaptations */
.bg-light {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.95), rgba(13, 71, 161, 0.95)) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.table thead {
  background: var(--card-bg);
  border-bottom: 2px solid var(--accent-color);
  font-weight: 600;
}

.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

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

.requirement-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-gradient);
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 0.25rem;
  box-shadow: var(--shadow-card);
}

.verification-step {
  padding: 1.5rem;
  border-left: 3px solid var(--accent-color);
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.verification-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-left-width: 5px;
  transform: translateX(5px);
}

.info-box {
  padding: 1.5rem;
  background: var(--secondary-gradient);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}