/* Base styles */
body {
  background-color: #f4f4f4;
  font-family: sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
#nav {
  background: #1e1e2f !important;
  min-height: 90px;
  padding: 10px 0;
  font-size: 1.1rem;
  box-shadow: 0 2.2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand span {
  font-weight: bold;
  font-size: 1.3rem;
  color: #ffc107;
}

.navbar .nav-link {
  color: #f1f1f1 !important;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ffc107 !important;
}

/* Dropdown user image */
.navbar .dropdown img {
  border: 2px solid white;
}

/* Carousel */
.carousel-item img {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  font-weight: bold;
}

.stats-card {
  background: linear-gradient(to right, #6610f2, #6f42c1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: white;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Table */
.table {
  font-size: 1rem;
}

.table thead th {
  background-color: #000000;
  color: #ffffff;
}


/* Footer */
#footer {
  background: #1e1e2f !important;
  color: #ffffff;
  padding: 20px;
  /* text-align: center; */
}

#footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

#footer a:hover {
  color: #ffc107;
  text-decoration: underline;
}

/* List Hover */
.list-group-item:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

/* Auth Links */
.auth-link {
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.auth-link:hover {
  color: #28a745;
  text-decoration: underline;
}
