/* Theme adaptation for light backgrounds */
.bg-dark {
  background: linear-gradient(135deg, var(--dark-navy), var(--dark-slate)) !important;
  color: var(--light-pearl) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-light {
  background-color: var(--light-pearl) !important;
  color: var(--dark-navy) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.requirement-list {
  list-style: none;
  padding-left: 0;
}

.requirement-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 2rem;
}

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

.requirement-list li:last-child {
  border-bottom: none;
}

.info-box {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border-left: 4px solid var(--primary-coral);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.table {
  color: var(--text-primary);
  border-color: var(--border-color);
}

.table thead {
  background: var(--dark-card);
  border-bottom: 2px solid var(--border-color);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.02);
}

.verification-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-lime);
  color: var(--dark-navy);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}