html {
    overflow: hidden;
    overflow-y: overlay;
}

tr:last-child {
    border-bottom: 0;
}


.row {
    font-size: 80%;
    display: flex;
    justify-content: center;
    width: 100%;
}


form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: auto;
}

#searchText {
    margin: 0 auto;
    padding: 0.4vw;
    width: 90%;
    font-size: 1.5em;
    background-color: var(--main-bg-color);
    border: 2px solid var(--secondary-text-color);
    color: var(--main-text-color);
    font-family: inherit;
    box-shadow: none;
}

input:focus {
    outline-color: var(--highlight-text-color) !important;
    outline: thin dotted;
}




.radio input {
    visibility: hidden;
    width: 0;
}

.radio label:hover {
    color: var(--secondary-highlight-text-color)
}

.radio input:checked+label {
    font-weight: bold;
    color: var(--highlight-text-color)
}


.select {
    font-size: 1.65rem;
    padding-bottom: 5px;
    width: 65%;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
}


table {
    border-collapse: collapse;
    width: 100%;
}

table h1,
h2 {
    display: inline;
}

td,
th {
    text-align: left;
    padding: 8px;
}

tr {
    border-bottom: 1px solid #dddddd;
}

.columns {
    padding: 0;
}

@media screen and (max-width: 992px) {
    .content {
        max-width: 80vw;
        margin-left: 10%;
        margin-right: 10%;
    }

    label {
        font-size: 2em;
    }

    .scale-notes {
        text-align: center;
    }

    #searchText {
        font-size: 1em;
    }
}


/* hacky scrollbar stuff */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: rgba(90, 90, 90);
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
