/* AIDEN – custom styles (Bootstrap 5 dark theme base) */

:root {
  --bs-body-bg: #0d1117;
  --bs-body-color: #c9d1d9;
  --bs-border-color: #30363d;
  --bs-card-bg: #161b22;
  --bs-secondary-bg: #161b22;
}

body {
  background-color: var(--bs-body-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Cards */
.card {
  background-color: var(--bs-card-bg);
}

/* Navbar */
.navbar.bg-dark {
  background-color: #161b22 !important;
}

/* Subtle scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #58a6ff; }
