
/* In your custom CSS file (loaded after bootstrap.min.css) */
:root {
  --bs-nav-link-hover-color: red !important;
  --bs-navbar-active-color: red !important;
}

/* Alternatively, scope it to a specific navbar */
.navbar {
  --bs-nav-link-hover-color: red; /* Applies only to elements within .navbar */
  --bs-navbar-active-color: red; /* Applies only to elements within .navbar */
}

.navbar-nav .nav-link:hover {
  color: red !important; /* Use !important if specificity is an issue */
}

.navbar-nav .nav-link.active {
  color: red !important; /* Active link color */
}


/* Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    text-align: center;
}

.stat-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stat-card i {
    font-size: 2.0rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
}

footer a {
    color: red !important;
    text-decoration: none !important;
}

footer a:hover {
  color: white !important;
}

footer a:active {
  color: gray !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebea5;
  color: white;
  text-decoration: none;
}
