/* Mobile Navigation Shared Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #003459;
    padding: 0;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100vw;
        /* Full viewport width */
        text-align: center;
        position: absolute;
        top: 100%;
        left: 50%;
        /* Center relative to parent */
        transform: translateX(-50%);
        /* Center adjustment */
        background-color: white;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        box-sizing: border-box;
        /* Ensure padding doesn't affect width calculations */
    }

    .nav-links.active {
        display: flex;
    }

    .main-nav,
    .main-nav1 {
        position: relative;
        flex-direction: row !important;
        /* Force row layout for header */
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .nav-links li {
        margin: 10px 0;
    }
}

/* Profile Initial Circle Style */
.profile-initial-circle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003459;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
}