.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.sidebar hr {
    width: 100%;
    background-color: #ccc;
}

.sidebar.open {
    left: 0;
}

.sidebar .logo {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: bold;
}

.sidebar .menu-item {
    margin: 20px 0;
    cursor: pointer;
    font-size: 18px;
    text-decoration: underline;
}

.sidebar .menu-bottom {
    margin-top: auto;
    margin-bottom: 40px;
}

.sidebar .menu-bottom-version {
    font-weight: bold;
    font-size: 16px;
}

.sidebar .menu-bottom-credits {
    font-size: 14px;
    margin-left: 10px;
}

.sidebar .settings {
    margin-left: 20px;
}

.docs a {
    text-decoration: none;
    color: white;
}

.feedback a {
    text-decoration: none;
    color: white;
}

.settings .menu-item {
    margin: 12px;
}

.docs-and-updates {
    display: flex;
    justify-content: center;
    align-items: center;
}

.docs-and-updates span {
    padding: 0px 12px 0px 12px;
}