#sidebar {
    flex-shrink: 1;
    gap: 4rem;
    padding: 1rem 0.5rem;
    max-width: 20%;
    width: min-content;
    align-items: center;
    display: flex;
    flex-direction: column;
}

#blurb {
    text-align: center;
    user-select: none;
    min-width: 0;
    width: fit-content;
    margin: 0;
    padding: 0 1rem;
    height: fit-content;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    background-image: url("/assets/images/stoakoflag.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#blurb p {
    font-weight: bold;
    color: white;
    -webkit-text-stroke: 2px black;
    font-size: clamp(1rem, 4.5rem, 5rem);
    margin: 0;
    padding: 0;
    display: inline-block;
    white-space: nowrap;
}

.sidebar-button-container {
    cursor: pointer;
    background-color: #151515;
    display: flex;
    border-radius: 5px;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0.3rem;
    gap: 2.5px;
    height: min-content;
    color: #7be459;
    margin-bottom: .5rem;
}.sidebar-button-container:last-of-type {
    margin-bottom: 0;
}.sidebar-button-container p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}.sidebar-button-container i {
    line-height: 100%;
    font-size: 1.25rem;
}

#search-container {
    background-color: #3b3b3b;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: space-evenly;
    padding: 0.3rem 0.1rem;
}#search-container i {
    padding: 0.2rem;
    opacity: 0.7;
    line-height: 100%;
    font-size: 1.5rem;
}
#search-container:focus-within {
    outline: 2px solid white;
}
#search {
    outline: 0;
    min-width: 0;
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
    border-radius: 3px;
    border: 0;
    box-sizing: border-box;
}

.sidebar-group {
    font-size: 0.9rem;
    text-align: center;
}.sidebar-group p {
    margin: 0;
}