/* sidebar.css */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    overflow-y: auto; /* Ensures the sidebar can still scroll vertically */
    transition: 0.5s;
    padding-top: 60px;
    font-family: "Roboto Mono", mono, sans;
    z-index: 2000; /* Keeps the sidebar above all other elements */
}

/* Hide the scrollbar */
.sidebar::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and other WebKit browsers */
}

/* Hide the scrollbar */
.sidebar {
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */
    scrollbar-width: none;  /* For Firefox */
}

.sidebar a {
    padding: 8px 8px 8px 40px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.sidebar .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.sidebar .bottom-close-btn {
    bottom: 20px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

