/**
 * Slot Booking - Frontend Styles
 * Versione: 1.0.3
 * Stili per opzioni disabled (compatibilità multi-browser)
 */

/* ============================================
   SLOT ESAURITI (COMPLETO)
   ============================================ */
select option.slot-disabled,
select option[disabled].slot-disabled {
    color: #999 !important;
    background-color: #f5f5f5 !important;
    background: #f5f5f5 !important;
    font-style: italic !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

/* ============================================
   DATE BLOCCATE (FESTIVI)
   ============================================ */
select option.slot-blocked,
select option[disabled].slot-blocked {
    color: #999 !important;
        background-color: #f5f5f5 !important;
        background: #f5f5f5 !important;
        font-style: italic !important;
        cursor: not-allowed !important;
        opacity: 0.6 !important;
}

/* ============================================
   GENERICO DISABLED
   ============================================ */
select option[disabled] {
    color: #999 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

/* ============================================
   BROWSER-SPECIFIC FIXES
   ============================================ */

/* Firefox */
@-moz-document url-prefix() {
    select option[disabled] {
        color: graytext !important;
        background-color: #f0f0f0 !important;
    }
}

/* Safari/Webkit */
@supports (-webkit-appearance: none) {
    select option[disabled] {
        color: #999 !important;
        -webkit-text-fill-color: #999 !important;
    }
}

/* ============================================
   MIGLIORA CONTRASTO OPZIONI DISABLED
   ============================================ */
select option[disabled] {
    color: #999 !important;
    background-color: #f5f5f5 !important;
    font-style: italic !important;
    text-decoration: line-through;
}

select option.slot-disabled {
    color: #999 !important;
}

select option.slot-blocked {
    color: #999 !important;
    background-color: #fff5f5 !important;
}
