/* Защита от горизонтального скролла */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Адаптация к светлой теме сайта */
.bg-dark {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark) 100%) !important;
  color: var(--light) !important;
  border: none;
}

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

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

.table thead {
  background: var(--light);
  border-bottom: 2px solid var(--primary);
  font-weight: 600;
}

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

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

.login-feature {
  transition: var(--transition);
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

.login-feature:hover {
  border-left-color: var(--accent);
  transform: translateX(5px);
}

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

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

@media (max-width: 768px) {
  .table-responsive {
    font-size: 0.9rem;
  }
}