/* Sidebar */
.sidebar {
  background: #1a1d2e;
  width: 240px;
  min-width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar-brand {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-link {
  color: rgba(255,255,255,0.72) !important;
  border-radius: 6px;
  margin-bottom: 2px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}

.sidebar-link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}

.sidebar-link.active {
  background: rgba(99,102,241,0.25);
  color: #fff !important;
}

/* Logo mark */
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}

/* Auth pages */
.auth-wrapper {
  background: #f1f5f9;
}
.auth-card {
  border-radius: 12px;
}

/* Stage tracker */
.stage-step {
  flex: 1;
  min-width: 0;
}

/* Spinner animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spin {
  display: inline-block;
  animation: spin 1s linear infinite;
}

/* Stats icon */
.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(99,102,241,0.08);
  flex-shrink: 0;
}

/* General */
.card {
  border-radius: 10px;
}

.table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  font-weight: 600;
}

body {
  background: #f1f5f9;
  color: #1e293b;
}
