.filter-box {
    width: 80%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 10px;
}

select {
    appearance: none;
    /* Remove default arrow/styling */
    -webkit-appearance: none;
    /* For Safari */
    font-size: 16px;
    background: white;
    min-height: 30px;
    width: max-content;
    text-align: center;
    align-self: stretch;
    cursor: pointer;
    outline: none;
    /* Remove focus outline */

    padding: 5px;
    margin-top: 10px;
}

select:focus {
    border-color: #2980b9;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

/* Styling for the options - very limited cross-browser */
option {
    background-color: #ffffff;
    color: #333333;
    padding: 5px;
    /* May not work consistently */
    font-size: 15px;
}

option:checked {
    /* When an option is selected */
    background-color: #e0f2f7;
    color: #1a5276;
}