/* Custom Neo-Brutalist Additions */

/* Form Elements */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: inset 4px 4px 0px 0px rgba(0,0,0,1);
    transform: translate(2px, 2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #fff;
    border-left: 2px solid #000;
}
::-webkit-scrollbar-thumb {
    background: #000;
    border: 2px solid #fff;
}
::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Checkbox Styling */
.filter-checkbox {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    display: grid;
    place-content: center;
}
.filter-checkbox::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em black;
    background-color: black;
}
.filter-checkbox:checked::before {
    transform: scale(1);
}
