/* sidebar.css */
.sidebar {
    padding: 15px;
    width: 200px;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    box-shadow: var(--shadow-m);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar h2 {
    margin-bottom: 20px;
    font-family: "Fira Mono", monospace;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
    width: 100%;
}

.sidebar ul li button,
.bodembtn {
    display: block;
    font-weight: bold;
    padding: 8px;
    border-radius: var(--radius);
    border: solid 1px var(--border-card);
    border-top: solid 1px var(--highlight);
    background-color: var(--bg-light);
    color: var(--text-muted);
    box-shadow: var(--shadow-m);
    width: 100%; /* Full width */
    box-sizing: border-box;
    cursor: pointer;
    text-align: center; /* Align text to the center */
}

.maincontent {
    margin-left: 220px;
    padding: 20px;
}

.bottom {
    margin-top: auto;
    text-align: center;
}
