/**
 * FORCE LIGHT THEME
 * Questo file viene caricato per ultimo e forza tutti gli input a essere bianchi
 * Override TUTTE le media query dark mode
 */

/* ==========================================
   DISABLE NUMBER STEPPERS (causing visibility issues)
   ========================================== */

.number-steppers,
.number-stepper {
    display: none !important;
}

.number-input-wrapper input[type="number"] {
    padding-right: 0.75rem !important;
}

/* ==========================================
   FORCE WHITE BACKGROUND ON ALL INPUTS
   ========================================== */

/* Override in qualsiasi condizione */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="url"],
input[type="search"],
select,
textarea,
.form-control,
.form-select {
    background-color: #ffffff !important;
    color: #1f2937 !important;
    border-color: #d1d5db !important;
}

/* Number input wrappers */
.number-input-wrapper input[type="number"] {
    background-color: #ffffff !important;
    color: #1f2937 !important;
    border-color: #d1d5db !important;
}

/* Table inputs */
table input,
table select,
table textarea,
.table input,
.table select,
.table textarea {
    background-color: #ffffff !important;
    color: #1f2937 !important;
    border-color: #d1d5db !important;
}

/* Cards white background */
.card,
.section-card,
.chart-card {
    background-color: #ffffff !important;
}

/* Tables white background */
.table {
    background-color: #ffffff !important;
}

/* Dark mode override */
@media (prefers-color-scheme: dark) {
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="time"],
    input[type="url"],
    input[type="search"],
    select,
    textarea,
    .form-control,
    .form-select {
        background-color: #ffffff !important;
        color: #1f2937 !important;
        border-color: #d1d5db !important;
    }
    
    .number-input-wrapper input[type="number"] {
        background-color: #ffffff !important;
        color: #1f2937 !important;
        border-color: #d1d5db !important;
    }
    
    table input,
    table select,
    table textarea,
    .table input,
    .table select,
    .table textarea {
        background-color: #ffffff !important;
        color: #1f2937 !important;
        border-color: #d1d5db !important;
    }
    
    .card,
    .section-card,
    .chart-card,
    .table {
        background-color: #ffffff !important;
    }
    
    body {
        background-color: #f3f4f6 !important;
    }
}
