/* FORZA TEMA CHIARO SEMPRE - MODALITÀ NOTTURNA COMPLETAMENTE DISABILITATA */
:root { 
  color-scheme: light !important; 
  --bs-body-color: #1f2937 !important;
}

/* Disabilita completamente dark mode su tutti gli elementi */
* {
  color-scheme: light !important;
}

@media (prefers-color-scheme: dark) {
  :root { 
    color-scheme: light !important; 
    --bs-body-color: #1f2937 !important;
  }
  
  /* Forza tema chiaro su tutti gli elementi principali */
  body { 
    color: #1f2937 !important; 
  }
  
  .card, .gd3d-card, .modal-content { 
    background: #fff !important; 
    color: #1f2937 !important; 
    border-color: #e5e7eb !important;
  }
  
  .navbar, .navbar-nav { 
    background-color: #fff !important; 
    color: #1f2937 !important; 
  }
  
  .form-control, .form-select, .btn { 
    background-color: #fff !important; 
    color: #1f2937 !important; 
    border-color: #d1d5db !important;
  }
  
  /* CONTROLLI NATIVI MOBILE - Forza tema chiaro sempre */
  input[type="date"], 
  input[type="time"], 
  input[type="datetime-local"],
  input[type="week"],
  input[type="month"],
  select,
  option {
    background-color: #fff !important;
    color: #1f2937 !important;
    border-color: #d1d5db !important;
    color-scheme: light !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }
  
  /* Forza controlli nativi WebKit (Safari/Chrome mobile) */
  input::-webkit-calendar-picker-indicator,
  input::-webkit-inner-spin-button,
  input::-webkit-outer-spin-button {
    background-color: #fff !important;
    color: #1f2937 !important;
    filter: invert(0) !important;
  }
  
  /* Select dropdown su mobile */
  select option {
    background-color: #fff !important;
    color: #1f2937 !important;
  }
  
  /* Forza tutti i testi a colore scuro */
  h1, h2, h3, h4, h5, h6, p, span, div, label, a {
    color: #1f2937 !important;
  }
  
  /* Forza sfondo bianco per tabelle */
  .table, .table-striped, .table-hover {
    background-color: #fff !important;
    color: #1f2937 !important;
  }
}

/* Piccoli aggiustamenti generali */
/* Background rimosso per permettere allo sfondo animato di essere visibile */

/* FIX SPECIFICO: Testo bianco in HR banca ore */
.card-header .text-primary,
.card-header h6.text-primary {
    color: #366092 !important;
}
