/* Show dropdown on hover */
.navbar-nav .dropdown:hover > .dropdown-menu,
.navbar-nav .dropdown-menu:hover {
    display: block;
}

/* Parent needs position relative for submenu to align correctly */
.nav-item.dropdown {
    position: relative;
}

/* Dropdown menu styling */
.dropdown-menu {
    position: absolute;
    top: 2.5rem; /* adjust this to prevent overlap */
    left: 0;
    background-color: #343a40;
    border: none;
    z-index: 1050;
    margin: 0;
}

/* Dropdown item styles */
.dropdown-item {
    color: white;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #495057;
    color: white;
}
