:root {
  --accent: #ff6fa5;
  --accent2: #7b2ff7;
}

body {
  background: radial-gradient(circle at top left, #2b0a3d, #120019 70%);
  min-height: 100vh;
}
[data-bs-theme="light"] body {
  background: radial-gradient(circle at top left, #ffe3ef, #f5f0ff 70%);
}

.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
}
[data-bs-theme="light"] .glass {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
}

.sidebar {
  width: 250px;
  min-height: 100vh;
  position: sticky;
  top: 0;
}
@media (max-width: 992px) {
  .sidebar { position: fixed; left: -270px; z-index: 1050; transition: left .2s; }
  .sidebar.show { left: 0; }
}

.sidebar .nav-link {
  color: #cfc7de;
  border-radius: 10px;
  padding: 10px 12px;
}
.sidebar .nav-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.sidebar .nav-link.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 600;
}

.topbar { border-bottom: 1px solid rgba(255,255,255,0.08); }

.stat-card {
  border-radius: 16px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.stat-card .value { font-size: 2rem; font-weight: 700; }

.card { border-radius: 16px; }
.table { border-radius: 12px; overflow: hidden; }

.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6fa5, #7b2ff7);
}
.login-card {
  width: 100%;
  max-width: 380px;
  padding: 40px;
}
