:root {
    --page-color: var(--tools-tc);
    --text-color: black;
    --background-color: white;
    --highlight-color: var(--page-color);
    --alt-text-color: white;
}

::-webkit-scrollbar-thumb {
    background: rgb(71, 151, 172) !important;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    margin: 0;
}

.table-cell.name {
    width: 10%;
}

.table-cell.categories {
    width: 20%;
}


.table-cell.description {
    width: 40%;
}


.table-cell.language {
    width: 10%;
}

.table-cell.offensive,
.table-cell.defensive,
.table-cell.online {
    width: 2rem;
}

.table-row .table-cell.name, 
.table-row .table-cell.description, 
.table-row .table-cell.authors, 
.table-row .table-cell.categories,
.table-row .table-cell.language {
    font-size: .9rem;
}

.table-row .table-cell.name {
    font-weight: bold;
    color: var(--highlight-color);
}

/* Smaller screens */

@media (max-width: 600px) { 

    .table-cell.description, 
    .table-cell.categories,
    .table-cell.authors,
    .table-cell.language {
        display: none;
    }

    .table-cell.name {
        width: 50%;
    }

}

@media (min-width: 601px) and (max-width: 1000px) { 

    .table-cell.description, 
    .table-cell.authors,
    .table-cell.language {
        display: none;
    }

    .table-cell.categories {
        width: 25%;
    }

    .table-cell.name {
        width: 70%;
    }

}
