/* Minimal custom styles - using Bootstrap primarily */

/* Custom gradient background */
.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Custom border-left accent */
.border-left-primary {
  border-left: 4px solid #007bff !important;
}

/* Hover effects for cards */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Enhanced Navigation Active States */
.navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #ffc107;
  border-radius: 1px;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 5px !important;
  transition: all 0.3s ease;
}