/* Sidebar */
.sidebar {
    width: max-content;
    min-width: 8rem;
    max-width: 16rem;
    height: 100vh;
    background: #333333;
    color: white;
    position: fixed;
    left: -100%;
    top: 0;
    transition: left 0.3s ease;
    padding-top: 4.95rem;
    z-index: 8888;
    white-space: nowrap;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Sidebar links */
.sidebar a {
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    color: white;
    padding: 0.9375rem;
    cursor: pointer;
    text-decoration: none;
    /* Remove mobile device click highlight */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.sidebar a:hover {
    background: #575757;
    text-decoration: none;
}

body.menu-locked .sidebar a:hover:not(.active-link) {
    background: none !important;
    pointer-events: none;
    cursor: default;
}

.sidebar a.active-link {
    background: #575757;
    cursor: pointer;
}

/* Menu toggle button */
.menu-toggle {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    position: fixed;
    left: 0.625rem;
    top: 0.625rem;
    background: #333333;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove mobile device click highlight */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Sidebar open state */
.menu-open .sidebar {
    left: 0;
}
