/* ========================================= */
/* MENU UI STYLING (PAGE-SPECIFIC)           */
/* ========================================= */


/* Icon image */
nav.navbar .menu-icon {
    width: 46px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    transition: transform .18s ease, opacity .18s ease;
    padding-right: 10px;
}

/* Color and Spacing from your design */
.custom-link {
    color: var(--color-grey) !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    padding: 8px 16px !important;
}

    /* Icon placement */
    .custom-link::before {
        content: "";
        display: inline-block;
        width: 35px;
        height: 25px;
        background-image: url('/images/teal-logo-icon.png'); /* Ensure path is correct */
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 8px;
    }

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--color-white);
        padding: 16px;
        border-top: 1px solid #eee;
    }

    .nav-item {
        border-bottom: 1px solid #f8f8f8; /* Light separators for mobile list */
    }

    .dropdown-menu {
        border: none;
        padding-left: 32px; /* Indent sub-items on mobile */
    }
}

@media (min-width: 992px){
    #navbarNav{
        padding-top: 11px;
    }
}