/* ============================================================
   Wahid Form & Entries — Frontend Multiple Select Styles
   ============================================================ */

.wfe-multiselect-wrap {
    display: block;
    width: 100%;
}

.wfe-multiselect-wrap select.wfe-multiselect {
    display: block;
    width: 100%;
    min-width: 200px;
    padding: 4px 2px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background-color: #fff;
    line-height: 1.8;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}

.wfe-multiselect-wrap select.wfe-multiselect:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
    outline: none;
}

/* Selected options highlight */
.wfe-multiselect-wrap select.wfe-multiselect option {
    padding: 6px 10px;
    border-radius: 2px;
}

.wfe-multiselect-wrap select.wfe-multiselect option:checked,
.wfe-multiselect-wrap select.wfe-multiselect option:hover {
    background: linear-gradient(0deg, #2271b1 0%, #2271b1 100%);
    background-color: #2271b1;
    color: #fff;
}

/* Hint text below field */
.wfe-multiselect-hint {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #757575;
    font-style: italic;
}

/* Error state */
.wfe-multiselect-wrap select.wfe-multiselect.wpcf7-not-valid {
    border-color: #dc3232;
    box-shadow: 0 0 0 2px rgba(220, 50, 50, 0.15);
}

/* Responsive */
@media (max-width: 480px) {
    .wfe-multiselect-wrap select.wfe-multiselect {
        font-size: 16px; /* iOS zoom prevent */
    }
}
