/* Global body styles */
body {
  background-color: #121212;
  color: #f5f5f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Sidebar */
.sidebar {
  background: #1e1e2e;
  min-height: 100vh;
}
.sidebar a {
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 8px;
  border-radius: 5px;
}
.sidebar a:hover,
.sidebar a.active {
  background: #333;
  color: #fff;
}

/* Cards */
.card {
  background: #1e1e2e;
  border: none;
  color: #f5f5f5;
}
.card-header {
  background: #2a2a3a;
  border-bottom: 1px solid #333;
  font-weight: 600;
}

/* Navbar */
.navbar {
  background: #1f1f2f;
}
.navbar .navbar-brand {
  color: #f5f5f5;
}
.navbar .btn {
  border-radius: 6px;
  font-weight: 500;
}

.footer {
  background: #1f1f2f !important;
  border-top: 1px solid #2a2a3a;
  padding: 15px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.5); /* subtle lift */
}
.footer strong {
  color: #fff;
}
.footer .text-info {
  color: #6fa8dc !important;
}
.footer .text-secondary {
  color: #999;
}



/* Text adjustments */
.text-muted,
.list-group-item.text-muted,
.list-group-item.bg-dark.text-muted {
  color: #d0d0d0 !important; /* lighter grey so it's visible */
  font-weight: 500;
}
.text-light {
  color: #f5f5f5 !important;
}
.list-group-item {
  background: #1e1e2e !important;
  border: none !important;
  color: #f5f5f5 !important;
}
.list-group-item.bg-dark.text-light {
  color: #f5f5f5 !important;
}

/* Lists */
.list-group-item {
  background: #1e1e2e;
  border: none;
}

/* Buttons */
.btn {
  border-radius: 6px;
  font-weight: 500;
}
.btn-success {
  background-color: #28a745;
  border: none;
}
.btn-primary {
  background-color: #007bff;
  border: none;
}
.btn-warning {
  background-color: #ffc107;
  border: none;
  color: #000;
}
.btn-info {
  background-color: #17a2b8;
  border: none;
}
.btn-danger {
  background-color: #dc3545;
  border: none;
}
