/* Custom Select Styling */
select#choices-single-no-search {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23140c3a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding: 12px 40px 12px 16px;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #140c3a;
    cursor: pointer;
    transition: all 0.3s ease;
}

select#choices-single-no-search:hover {
    border-color: #140c3a;
    box-shadow: 0 2px 8px rgba(20, 12, 58, 0.1);
}

select#choices-single-no-search:focus {
    outline: none;
    border-color: #140c3a;
    box-shadow: 0 0 0 3px rgba(20, 12, 58, 0.1);
}

select#choices-single-no-search option {
    padding: 10px;
    font-size: 14px;
}
