/* #caf-filter-form {
    display: flex;
    gap: 10px;
} */

#caf-filter-form select,
#caf-filter-form input[type="text"],
#caf-filter-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 100px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#caf-filter-form select:disabled,
#caf-filter-form input[type="text"]:disabled,
#caf-filter-form button:disabled {
    background-color: #f9f9f9;
    border-color: #ccc;
    color: #aaa;
}

#caf-filter-form select:enabled,
#caf-filter-form input[type="text"]:enabled,
#caf-filter-form button:enabled {
    background-color: #fff;
    border-color: #ccc;
}

#caf-filter-form button {
    background-color: #f7c601 !important;
    border-color: transparent !important;
    color: #000;
    font-family: 'Kanit';
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#caf-filter-form button:hover {
    background-color: #fff !important;
    border-color: #f7c601 !important;
    color: #f7c601 !important;
}
