﻿ul#hotelAccordion .menu-header::before {
    display: none;
    content: none;
}

#hotelAccordion li.menu-header {
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
    width: 100%;
}

#hotelAccordion .menu-header-text {
    font-size: 1.1rem;
    color: #0d6efd;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    display: block;
}

#hotelAccordion .hotel-name {
    color: #1D1D1B;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.menu-inner li.menu-item ul {
    list-style-type: none;
    padding-left: 0;
    min-width: 200px;
}


#leftPanelWrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: auto;
}


#leftPanel {
    flex: 1 1 auto;
    min-height: 0;
    height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0.5rem 80px;
    -webkit-overflow-scrolling: touch;
}


.menu-inner {
    flex: 1 1 auto;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.toggle-icon {
    cursor: pointer;
    transition: transform 0.2s;
}

.menu-item.open .toggle-icon {
    transform: rotate(90deg);
}

.folder-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    transition: none;
}


@media (max-width: 768px) {
    #leftPanelWrapper {
        height: 100dvh;
    }

    #leftPanel {
        padding-bottom: 100px;
    }
}
