/* ==========================================================================
    [04] NAVIGATION & DRAWER (SLIDE-LOGIK ERHALTEN)
    ========================================================================== */
    
#menu-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
}

#menu-overlay.active { 
    display: block !important; 
}

.burger-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
}

.burger-icon span { 
    width: 25px; 
    height: 3px; 
    background: #ffffff; 
    transition: none; /* Transition entfernt */
}

.nav-menu {
    position: fixed;
    top: 0; 
    right: -320px;
    width: 300px; 
    height: 100vh;
    
    /* Glas-Effekt, ohne Transition */
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(10px);
    border-left: 3px solid #ff751f;
    transition: none !important; /* Transition hart abgeschaltet */
    z-index: 999;
    overflow-y: auto;
}

.nav-menu.active { 
    right: 0 !important; 
}

.menu-status-label {
    background: #004e7a;
    color: #ffffff;
    padding: 10px;
    font-size: 1.8rem;
    text-align: center;
    text-transform: uppercase;
}


.user-header-widget {
    position: relative; /* Wichtig für das Dropdown-Menü */
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 5px; /* Eckig statt rund */
    color: #000000;
    font-size: 1rem;
}

.user-header-widget img {
    width: 30px !important;
    height: 30px !important;
    border-radius: 10%;
    object-fit: cover;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 1rem;
}

/* Das Dropdown-Menü */
.user-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #000;
    padding: 10px;
    z-index: 1000;
    min-width: 120px;
}

.user-dropdown-menu a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 5px 0;
}

.nav-section {
    width: 100%;
    border-bottom: 4px solid #e8e8e8;
}

.section-header-img {
    width: 100%;
    height: auto;
    display: block;
}

.account-banner{
    width:100%;
    height:90px;

    object-fit:cover;
    object-position:center;

    display:block;

    border-bottom:3px solid #001b3d;
}

.nav-button {
    color: #ffffff !important;
    background: transparent !important; /* Button-Transparenz */
    padding: 15px 20px !important;
    text-decoration: none !important;
    display: block !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    transition: none !important; /* Transition entfernt[cite: 3] */
}

.nav-button:hover {
    background: #001b3d !important;
    color: #ffffff !important;
}