.button.pagebutton
{
    background-color: black;
}
.button.search_button img
{
    width: 16px;
}

textarea
{
    font-family:monospace;
}
.thumbnail
{
    max-width: 100%;
    max-height: 150px;
}

.fablab_logo
{
    margin-top: 1em;
    width: 9em;
    height: auto;
}

#search_button_checkbox
{
    display: none;
}

#search_button_checkbox:checked ~ .modal
{
    display: block;
    z-index: 1;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(107, 107, 107, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal
{
    display: none;
}
.modal > div
{
    width: 50vw;
    background-color: var(--bg);
    border-radius: 16px;
    padding: 16px;
}
@media only screen and (max-width: 600px)
{
    .modal > div
    {
        width: 90vw
    }
}
@media only screen and (max-width: 1024px)
{
    .modal > div
    {
        width: 75vw
    }
}

#content_search_results
{
    height: 60vh;
    overflow-y: auto;
}