body {
    margin: 0;
    font-family: "RobotoCondensed VariableFont wght";
    background-color: #0f0f0f;
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.sidebar {
    width: 250px;
    height: 100%;
    background-color: #0f0f0f;
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    left: -250px;
    transition: 0.2s;
    padding-top: 60px;
    z-index: 3;
}
.sidebar.open {
    left: 0;
}
@media screen and (orientation: landscape) {
    .sidebar {
        left: 0; /* Keep it open in landscape mode */
    }
}
@media screen and (max-width: 768px) {
    .sidebar {
        width: 80px;
        padding-top: 20px;
    }

    .sidebar a {
        padding: 15px;
    }

    .sidebar img {
        height: 24px;
    }

    body {
        padding-left: 80px;
    }
}
.sidebar a {
    padding: 15px 15px 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: #f1f1f1;
    display: flex;
    align-items: center;
    transition: background-color 0.2s, border-radius 0.2s;
    border-radius: 8px;
    margin-bottom: 10px;
    width: 90%;
    box-sizing: border-box;
}

.sidebar a i {
    margin-right: 20px;
}

.sidebar a:hover {
    background-color: #212121;
}

.sidebar img {
    height: 36px;
    margin-right: 5px;
}

.open-btn {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-content: center;
    font-size: 20px;
    font-weight: 10;
    cursor: pointer;
	background-color: hsla(0,0%,0%,0.00);
    color: white;
    border: none;
    padding: 10px 10px;
    z-index: 4;}

.menu-icon:hover {
    background-color: #212121;
}

.menu-icon:active {
    background-color: #777;
}

.menu-icon {
    padding: 5px 10px;
    border-radius: 50%;
    background-color: #0f0f0f;
    display: inline-block;
    transition: background-color 0.2s;
}