.navbar {
    border-radius: 0;
    min-height: 80px;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    color: rgb(255, 255, 255);
    font-weight: bold;
}

.navbar-toggler-icon {
    color: #fff;
    /* Set the desired color, in this case, white */
    border-color: white;
}

.dropdown-header {
    background-color: #D9D9D9;
    height: 44px;
}

.dropdown-menu-end {
    top: calc(100% + 15px) !important;
    width: 320px;
    position: absolute !important;
    padding-top: 0px;
    padding-bottom: 0px;
}

@media (max-width: 767px) { 
    .dropdown-menu {
        position: static !important; /* Normal behavior in mobile */
        width: 100%; /* Make it full width inside collapse */
        box-shadow: none; /* Remove shadow in mobile mode */
    }
}

.dropdown-item {
    height: 35px;
}

.dropdown-footer {
    height: 44px;
    border-top: 1px solid #D9D9D9;
}