.menu-hidden {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9992;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.menu-header {
    background: #0000001f;
    padding: 20px;
    text-align: center;
}

.menu-logo {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}

.menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.menu-list li {
    border-radius: 5px;
    width: 90%;
    border-bottom: 1px solid #f0f0f0;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-list a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.menu-list a:hover {
    background: #0d6dfdcd;
    color: #fff;
    border-radius: 5px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9991;
    display: none;
}

.menu-hidden.open {
    left: 0;
}

#overlay.show {
    display: block;
}