/* Custom Navigation Styles */

.navbar {
    background-color: #0e6efd !important;
    margin-bottom: 28px;
    border-radius: 10px;
    margin-top: 10px;
}

.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation item spacing and sizing */
.nav-item {
    margin: 0 2px;
    font-size: 0.9em;
}

.nav-link {
    border-radius: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    font-weight: 500;
}

/* Brand styling */
.navbar-brand {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.75rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    margin: 0.125rem 0.5rem;
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .nav-link {
        margin: 0.25rem 0;
    }

    .nav-item {
        margin: 0;
    }
}
