@media only screen and (max-width: 700px) {
    body .searchbarcontainer{
        display: none;
    }

    body .not-mobile{
        display: none !important;
    }
}

th{
    font-weight: 400;
}

.forumcontainer{
    width: 100%;
    text-align: left;
}

.forumcontainer tbody tr td:nth-child(1){
    padding-bottom: 6px;
}

.forumcontainer tbody tr:last-of-type td:nth-child(1){
    padding-bottom: 0;
}

#paginator{
    max-width: 350px;
    margin: auto;
}

#paginator span{
    transition: all .2s ease-in-out;
}

#paginator span:hover{
    transform: scale(1.3);
    cursor: pointer;
}

.thread-title{
    word-break: break-word;
    display: flex;
    align-items: center;
}

.forumMenu{
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: var(--gap);
}

input, select, option{
    padding: var(--gap);
    border: 1px solid rgba(0,0,0,0.2); 
    border-radius: var(--round);
    outline: none;
    background-color: var(--color-background);
}

.pin{
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    background: url("/icons/pin.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

a.thread-title:visited{
    color: darkgray;
}