main {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    min-height: 60vh;
}

label {
    width: fit-content;
    cursor: pointer;
    margin: 2px;
}

label:has(input:checked) {
    text-indent: .5rem;
    font-weight: bold;
    text-decoration: solid underline 2px var(--text);
}

input {
    display: none;
}

.hero {
    background-image: url("../media/club_room_thinking.jpg");
    background-size: cover;
    background-position: 0 75%;
}

#filter_button {
    position: fixed;
    top: .7rem;
    right: 1rem;
    z-index: 5;
    height: calc(5rem * .70);
    display: none;
}

#filter_button > img {
    height: 100%;
}

#doc_menu {
    position: sticky;
    top: 8rem;
    padding: 0 2rem 2rem;
    width: 15%;
    height: fit-content;
    border-radius: 1rem;
    margin-top: 3rem;
    background: var(--theme);
    display: flex;
    flex-direction: column;
}

#doc_menu > * {
    color: var(--text);
}

#doc_menu > h2 {
    margin: 2rem 0 0 0;
}

#result_count {
    font-weight: bold;
}

.content_date_icon {
    margin: 0;
    display: flex;
    gap: 1rem;
}

.content_date_icon p {
    margin: 0;
    color: var(--background_mono);
}

#docs_list {
    width: 55%;
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.discover_object {
    width: 75%;
}

.document_icon {
    max-height: 1.4rem;
    max-width: 1.4rem;
    border-radius: 0;
}

.documentation_spacer {
    height: 5rem;
    width: 90%;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.documentation_spacer > * {
    color: var(--theme);
}

.divider_decoration {
    height: 3px;
    width: 100%;
    background: var(--theme);
}

.discover_hidden {
    display: none;
}