/* Global select styling for admin + public forms */
select,
select.form-select,
select.form-control,
.form-select {
    min-height: 42px;
    border: 1px solid #d3dbe8;
    border-radius: 10px;
    background-color: #fff;
    color: #2f3b52;
    padding: 10px 40px 10px 12px;
    line-height: 1.35;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23637593' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

select:focus,
select.form-select:focus,
select.form-control:focus,
.form-select:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 0.15rem rgba(78, 115, 223, 0.2);
    outline: none;
}

select:disabled,
select.form-select:disabled,
select.form-control:disabled,
.form-select:disabled {
    background-color: #f3f5f9;
    color: #8a97ad;
    cursor: not-allowed;
}

/* Keep native behavior for multi-selects */
select[multiple],
select[size]:not([size="1"]) {
    background-image: none;
    padding-right: 12px;
    min-height: 120px;
}
