/* Dark theme adaptations */
.bg-light {
  background-color: #1a1f2e !important;
  color: #e8eaf0 !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: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.payment-icon {
  width: 60px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
  margin-right: 10px;
}

.badge-custom {
  background: var(--gradient-accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.feature-box {
  padding: 1.5rem;
  border-left: 4px solid var(--accent-color);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1rem;
}

.info-highlight {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1), rgba(var(--accent-color-rgb), 0.1));
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}