/* Navigation Enhancements */
:root {
    --primary-color: #37B34A;
    --primary-dark: #2d8f3a;
    --primary-light: #5bc46a;
}

.text-green{
    color: var(--primary-color) !important;
}

.navbar,
.navbar * {
  z-index: 1055 !important; /* higher than content */
}

.navbar-custom {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 4px;
}

.nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color) !important;
}

.user-dropdown {
  min-width: 180px;
  font-size: 0.95rem;
}

.user-dropdown .dropdown-item {
  padding: 10px 15px;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.user-dropdown .dropdown-item:hover {
  color: #37B34A; 
  background-color: #EAF6FF; 
  font-weight:500; 
}

.user-dropdown .dropdown-divider {
  margin: 0.5rem 0;
}


