/* Make sure the navbar is visible */
.main_menu {
    display: block !important;
}

/* Style for the navbar toggler */
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #333;
}

/* Make sure dropdowns work properly */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/* Make sure the collapsed menu works properly in mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        z-index: 1000;
        padding: 1rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .main_menu_list {
        flex-direction: column !important;
        width: 100%;
    }
    
    .main_menu_list li {
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu {
        border: none;
        padding-left: 1rem;
    }
}