/* Navbar styles */
.navbar {
    background-color: white!important;
    /* Navbar background color */
    color: white;
    border-bottom: 1px solid #eee;
    /* Navbar text color */
}

.navbar-toggler-icon {
    color: #012060 !important;
    background-image: #012060 !important;
    /* Color of the navbar toggle icon */
}

.nav-link {
    color: #012060 !important;
    /* Color of navigation links */
}

/* Dropdown menu styles */
.dropdown-menu {
    background-color: white;
    /* Background color of the dropdown menu */
    border: none;
    /* Remove dropdown menu borders */
    border-radius: 0;
    /* Remove border-radius */
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    /* Add box shadow */
}

/* Adjust styles for Admission Counselling dropdown */
.dropdown-item.dropdown-toggle:focus,
.dropdown-item.dropdown-toggle:hover {
    background-color: var(--primary-color) !important;
    /* Prevent color change on hover and focus */
    color: white !important;
    /* Text color for focused and hovered item */
}

/* Adjust styles for Profile Evaluation, Profile Building, and University Selection buttons */
.dropdown-submenu .dropdown-menu .dropdown-item.dropdown-toggle:focus,
.dropdown-submenu .dropdown-menu .dropdown-item.dropdown-toggle:hover {
    background-color: var(--primary-color) !important;
    /* Prevent color change on hover and focus */
    color: White !important;
    /* Text color for focused and hovered item */
}

.dropdown-item {
    color: #012060 !important;
    /* Text color of dropdown items */
    padding: 10px 20px;
    /* Add padding to dropdown items */
}

.dropdown-item:hover {
    background-color: var(--primary-color) !important;
    /* Background color on hover */
    color: White !important;
    /* Text color on hover */
}

.dropdown-divider {
    margin: 0;
    /* Remove margin */
    border-top: 1px solid var(--primary-color);
    /* Divider color */
}

/* Submenu styles */
.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-top: -1px;
    border-radius: 0;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile-friendly adjustments */
@media screen and (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        /* Stack navigation links in a column on small screens */
    }

    .navbar-toggler {
        color: #012060;
        /* Adjust spacing of the navbar toggle button */
    }

    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
}