/* Dark theme adaptations */
.bg-light {
  background-color: #1e2329 !important;
  color: #e8e9ed !important;
}

.card {
  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);
}

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

.table-dark {
  --bs-table-bg: #1a1d23;
  --bs-table-striped-bg: #1e2329;
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
  --bs-table-color: var(--text-light);
}

.table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-bottom: 2px solid var(--accent-color);
  color: var(--text-light);
}

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

.alert-warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
  border-left: 4px solid var(--accent-color);
  color: var(--text-light);
}

.list-group-item {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 1rem 1.25rem;
}

.badge {
  padding: 0.5em 1em;
  font-weight: 600;
}

.section-divider {
  height: 2px;
  background: var(--gradient-primary);
  margin: 3rem 0;
  border: none;
  opacity: 0.3;
}

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