.sidebar {
    background-color: lightgray;
    flex: 1 10 20%;
    height: fit-content;
    max-width: 100vw;
    border: 2px solid black;
    border-radius: 10px;
    padding: 8px;
}

.sidebar-title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 8px;
}

.sidebar-subtitle {
    font-weight: bold;
    font-size: 20px;
}

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

.sidebar li {
    border: 1px black solid;
    background-color: beige;
    margin-bottom: 8px;
    padding: 8px;
}