/* file a5abit-cssve1.css V20260902-02
<style type="text/css">
 /* ======================================================================
    1. RESET & REGOLE DI BASE
    ====================================================================== */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 } 

 :root {
  --dimensione-scheda: 18px; 
 }

 body {
  font-family: "Times New Roman", Times, serif;
  background-color: #7F0000;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
 }

 /* ======================================================================
    2. LAYOUT & CONTENITORI PRINCIPALI
    ====================================================================== */
 .general-section {
  background-color: #7F0000; 
  width: 100%;                
  padding: 10px 5px;        
  display: flex;
  justify-content: center;   
 }

 .content-wrapper {
  width: 100%;
  max-width: 1000px;         
  background-color: #482E92; 
  padding: 5px;              
  border-radius: 8px;        
  display: flex;
  flex-direction: column;
  gap: 10px;                 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
  color: #ffffff;
  font-size: 20px;
 }

 .content-wrapper p {
  color: #ffffff;
  font-size: 20px;
 }

 /* ======================================================================
    3. TESTATA (HEADER)
    ====================================================================== */
.box-header {
  box-sizing: border-box; /* Risolve lo strabordamento includendo il padding nella width */
  width: 100%;               
  display: flex;             
  align-items: center;       
  background-color: #5527DA; 
  border-radius: 4px;
  margin: 0;                 
  padding: 5px;                
}

 .header-logo-container {
  width: 80px;               
  height: 80px;              
  flex-shrink: 0;            
  transition: width 0.3s ease, height 0.3s ease; 
 }

 .header-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
 }

 .header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra verticalmente */
  align-items: center;     /* Forza la centratura orizzontale degli elementi figli */
  text-align: center;      /* Centra il testo all'interno delle righe */
  padding: 0 15px;
  width: 100%;             /* Assicura che occupi tutto lo spazio calcolato */
 }

 .testo-header-titolo { color: #ffffff; font-size: 1.8rem; font-weight: bold; margin-bottom: 4px; line-height: 1.2 !important; }
 .testo-header-sottot { color: #ffffff; font-size: 1.5rem; font-weight: bold; line-height: 1.2 !important; }
 .testo-header-1      { color: #ffffff; font-size: 1.8rem; font-weight: bold; line-height: 1.2 !important; }
 .testo-header-1gia   { color: yellow; font-size: 1.8rem; font-weight: bold; line-height: 1.2 !important; }
 .testo-header-1lim   { color: #00FF00; font-size: 1.8rem; font-weight: bold; line-height: 1.2 !important; }
 .testo-header-2      { color: #ffffff; font-size: 1.5rem; font-weight: bold; line-height: 1.2 !important; }
 .testo-header-2gia   { color: yellow; font-size: 1.5rem; font-weight: bold; line-height: 1.2 !important; }
 .testo-header-2lim   { color: #00FF00; font-size: 1.5rem; font-weight: bold; line-height: 1.2 !important; }

 /* ======================================================================
    4. PULSANTI (GRID - ORA 6 COLONNE SU DESKTOP)
    ====================================================================== */
 .box-buttons {
  display: grid;
  /* I primi 5 prendono 1.02fr (+2% ciascuno), il 6° prende 0.9fr (-10%) */
  grid-template-columns: 1.02fr 1.02fr 1.02fr 1.02fr 1.02fr 0.9fr;
  gap: 8px; 
  margin-bottom: 5px; 
 }

 .btn-green {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #6A00F0; 
  color: #ffffff !important;           
  text-decoration: none !important;     
  padding: 3px 3px 6px 3px; 
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.3s ease; 
 }

 .btn-green:hover {
  background-color: #b01030; 
  color: #ffffff !important;
 }

 .btn-titolo {
  color: #ffffff;
  font-size: 1.5rem; 
  font-weight: bold;
  line-height: 1.0;  
  white-space: nowrap; 
 }

 .btn-titolo br {
  display: none;
 }

 .btn-sottot {
  color: #ffffff;
  font-size: 1.3rem; 
  line-height: 1.2;
  font-weight: bold;
  margin-top: 2px;    
  display: block; 
  white-space: nowrap; 
 }

 /* ======================================================================
    5. BLOCCO EVENTI E BANNER MODULO
    ====================================================================== */
 
 .elenco-contenitore { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
 }

 .elenco-contenitore a { 
  text-decoration: none; 
  font-size: inherit !important; 
 }

 .riga-evento-sfumata { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  min-height: 40px; 
  padding: 3px; 
  border-radius: 6px; 
  background: #5E19FF !important; 
  color: #ffffff; 
  font-family: sans-serif; 
  box-sizing: border-box; 
  transition: background 0.2s ease-in-out; 
 }

 .riga-evento-sfumata:hover {
  background: linear-gradient(to bottom, #FF00DC, #FF77DC) !important; cursor: pointer; }
  .riga-evento-sfumata:hover .eve-titolo { color: #ffffff !important; }
 }
 
 .riga-evento-sfumata-no-over { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  min-height: 40px; 
  padding: 3px; 
  border-radius: 6px; 
  background: #5E19FF !important; 
  color: #ffffff; 
  font-family: sans-serif; 
  box-sizing: border-box; 
  transition: background 0.2s ease-in-out; 
 }

 
 .link-blocco-evento { text-decoration: none; display: block; color: inherit; }
 .link-album { color: lime !important; text-decoration: none; font-size: 22px; font-family: 'Times New Roman', Times, serif; transition: all 0.2s ease; }
 .link-album:hover { color: lime !important; background-color: red; }


 .eve-titolo { 
  font-size: 18px; 
  font-weight: normal; 
  color: #ffffff; 
  margin-bottom: 1px; 
  font-family: 'Times New Roman', Times, serif !important; 
 }

 .eve-titolo-gia { 
  font-size: 18px; 
  font-weight: normal; 
  color: #ffff00; 
  margin-bottom: 1px; 
  font-family: 'Times New Roman', Times, serif !important; 
 }

 .eve-titolo-gia a { 
  color: #FF51E7 !important; 
  text-decoration: none; 
 }

 .eve-dettaglio { 
  font-size: 18px; 
  color: #ffffff; 
  display: block; 
  margin-bottom: 1px; 
 }

 /* BANNER MODULO LINK */
 .banner-modulo-container {
  width: 100%;
  margin: 5px 0;
  display: flex;
  justify-content: center;
 }

 .banner-modulo-link {
  width: 100%;
  max-width: 1000px;
  display: block;
  text-decoration: none !important;
  background-color: #0026CB;
  border: 2px solid #FFFF00;
  border-radius: 5px;
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  transition: background-color 0.2s ease-in-out;
 }

 .banner-modulo-link:hover {
  background-color: #5527DA;
  cursor: pointer;
 }

 .banner-modulo-testo {
  color: lime !important;
  font-family: "Times New Roman", Times, serif !important;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.3;
  text-align: left;
  margin: 0;
  padding: 0;
 }

.banner-tipo-evidenziato {
    color: #0000ff !important;        /* Blu vivido per la lettera */
    background-color: #ffff00;        /* Sfondo giallo */
    font-weight: bold;                /* Grassetto per massima leggibilità */
    padding: 2px 6px;                 /* Spaziatura attorno alla lettera */
    border-radius: 3px;               /* Angoli leggermente arrotondati */
    display: inline-block;            /* Garantisce la corretta resa del blocco */
}

 /* ======================================================================
    6. CORPO CENTRALE E ANTEPRIMA IN SCHEDA (TESTO A 20PX BIANCO)
    ====================================================================== */
 .main-content-text, 
 .box-anteprima {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 15px; 
  background-color: #144a56;
  color: #ffffff !important;
  font-family: 'Times New Roman', Times, serif !important;
  font-size: 20px !important;
  line-height: 1.4 !important;
  overflow-x: auto;
  border-radius: 6px;
  margin-bottom: 20px;
 }

 /* Forza 20px su tutti i testi generici e paragrafi */
 .main-content-text p,
.main-content-text span:not([class*="mtit-"]):not(.banner-tipo-evidenziato),
.box-anteprima p,
.box-anteprima span:not([class*="mtit-"]):not(.banner-tipo-evidenziato) {
 color: #ffffff !important;
 font-size: 20px !important;
 line-height: 1.35 !important;
}

 .main-content-text a { 
  color: #FF00DC !important; 
  text-decoration: none !important; 
 }

 .main-content-text img { 
  max-width: 100% !important; 
  height: auto !important; 
  border-radius: 4px; 
 }
  
 /*CENTRAGGIO IMMAGINI provenienti dalla Scheda*/
 .img-centrata {
  display: block;
  margin: 15px auto;
 }

 /* ======================================================================
    7. MODULO TITOLI (mtit:) - IMPOSTATI A 26px, 23px E 20px
    ====================================================================== */
 .mtit-box { 
  display: block !important; 
  width: 100% !important; 
  text-align: center !important; 
  margin: 0 0 1px 0 !important; 
  clear: both !important; 
 }

 .mtit-titolo, .mtit-sottotitolo, .mtit-commento,
 .mtit-titolo *, .mtit-sottotitolo *, .mtit-commento * { 
  font-family: "Times New Roman", Times, serif !important; 
  color: #00FF00 !important; 
  font-weight: bold !important; 
  text-align: center !important; 
  display: block !important; 
  line-height: 1.1 !important; 
  margin: 2px 0 !important; 
  float: none !important; 
 }

 .mtit-titolo, .mtit-titolo *             { font-size: 26px !important; }
 .mtit-sottotitolo, .mtit-sottotitolo * { font-size: 23px !important; }
 .mtit-commento, .mtit-commento *        { font-size: 20px !important; }

 .box-anteprima > :first-child {
  margin-top: 0 !important;
 }

 /* ======================================================================
    8. STILI STANDARD PER SCHEDE E MODULI IN-LINEA (Album Italia)
    ====================================================================== */
 .mod-box {
  background-color: #6b21a1;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  padding: 15px 10px;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Times New Roman', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  box-sizing: border-box;
 }

 .mod-titolo {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: left;
  line-height: 1.3;
 }

 .mod-sottot {
  color: #00bcd4;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
 }

 .mod-testo {
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 1.5;
 }

 .mod-evidenza {
  color: #00ff00;
  font-weight: bold;
 }

 .mod-link {
  color: #FF00DC;
  text-decoration: none;
 }

 .mod-link:hover {
  text-decoration: none;
  color: #FF006E;
 }

 /* ======================================================================
    9. PANNELLO DI CONTROLLO E TABELLA RICERCA (a6aire.htm)
    ====================================================================== */
 .tabella-ricerca {
  border-collapse: collapse;
  width: 100%;
  max-width: 980px;
  background-color: #6b21a1; 
  font-family: "Times New Roman", Times, serif;
  margin: 0 auto;
 }
  
 .tabella-ricerca td {
  border: 1px solid #c8e6c9;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
 }
  
 .tabella-ricerca .header-tabella {
  height: 60px;
  background-color: #5b21a1;
  color: #ffffff;
  font-size: 26px !important;
  font-weight: bold;
 }
  
 .tabella-ricerca .testo-etichetta {
  color: #FFFFFF;
  font-size: 24px !important;
  font-weight: bold;
 }
  
 .tabella-ricerca .note-ricerca {
  color: #FFFFFF;
  font-size: 20px !important;
  text-align: left;
  line-height: 1.4;
 }
  
 .tabella-ricerca select.campo-ricerca {
  font-size: 24px !important;
  font-family: "Times New Roman", Times, serif;
  height: 40px;
 }
  
 .tabella-ricerca input.campo-testo {
  font-size: 24px !important;
  font-family: "Times New Roman", Times, serif;
  height: 36px;
 }
  
 .tabella-ricerca #submit2 {
  background-color: aqua;
  border: 4px solid red;
  color: navy;
  font-weight: bold;
  padding: 0;
  height: 40px;
  width: 100px;
  line-height: 30px;
  font-size: 28px !important;
  font-family: 'Times New Roman', Times, serif;
  cursor: pointer;
 }
  
 .tabella-ricerca #submit2:hover {
  background-color: #FF00DC;
  color: #FFFFFF;
 }

 /* ======================================================================
    10. TABELLA ANNI
    ====================================================================== */
 .tabella-anni {
  border-collapse: collapse;
  width: 100%;
  max-width: 980px;
  background-color: #6b21a1; 
  font-family: "Times New Roman", Times, serif;
  margin: 10px auto;
 }

 .tabella-anni td {
  border: 1px solid #c8e6c9;
  text-align: center;
  vertical-align: middle;
  height: 85px;
  width: 10%;
 }

 .tabella-anni .header-tabella {
  height: 60px;
  background-color: #5b21a1;
  color: #ffffff;
  font-size: 26px !important;
  font-weight: bold;
 }

 .tabella-anni a.link-anno {
  color: #FFFFFF;
  font-size: 26px !important;
  font-weight: bold;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 85px;
 }

 .tabella-anni a.link-anno:hover {
  background-color: #FF00DC;
  color: #FFFFFF;
 }

 .tabella-anni .anno-disattivato {
  color: #826AA0;
  font-size: 26px !important;
  font-weight: bold;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 85px;
  cursor: default;
 }

 /* ======================================================================
    11. WRAPPER MASCHERA PARTECIPANTI (RIGHE INCORNICIATE)
    ====================================================================== */
/* 1. Applica il box-sizing corretto al wrapper e a tutti i suoi figli */
.wrapper-partecipanti,
.wrapper-partecipanti * {
  box-sizing: border-box;
}

/* 2. Regola il wrapper principale */
.wrapper-partecipanti {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto; /* Centra il blocco se si trova in un contenitore più largo */
}

/* 3. Assicurati che le righe interne non superino mai il 100% */
.riga-maschera {
  width: 100%;
  margin: 0; /* Previene margini esterni indesiderati che spingono fuori il box */
}

 .riga-maschera {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8px 10px;
  color: #00ff00;
  font-family: "Times New Roman", Times, serif;
  text-decoration: none;
  border: 2px solid #00ff00;
  border-radius: 6px;
  font-size: 1.6rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
 }

 .riga-titolo {
  background-color: #2e004f;
  color: #ffff00;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: default;
 }

 .riga-link {
  background-color: #4a007d;
  font-weight: normal;
  cursor: pointer;
 }

 .riga-link:hover {
  background-color: #6100a4;
  color: #ccff00 !important;
 }

 /* ======================================================================
    12. FOOTER & CONTROLLI AZIONE (AGGIORNATO)
    ====================================================================== */
 .box-footer-text {
  width: 100%;
  padding: 3px;
  background-color: #5527DA; 
  border-radius: 6px;        
  overflow-x: auto; 
 }

 .text-footer-text p, .box-footer-text p {
  color: #f8fafc;            
  font-size: 1.2rem;
  text-align: center;        
  white-space: nowrap;       
  width: 100%;               
 }

 .box-footer-text a { color: #FF7CED !important; text-decoration: none !important; }
 .box-footer-text a:hover { color: #FFFFFF !important; text-decoration: none !important; }
 .box-footer-text a img { border: 0 !important; }

 .mobile-break { display: none; }

 .titfondo, .titolodifondo {
  color: #FFD800;
  font-size: 1.5rem; 
  display: block;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
 }

 .box-sotto-pulsanti {
  display: flex;
  width: 100%;
  background-color: #262626; 
  border-radius: 6px;
  padding: 8px;
  gap: 12px;
  box-sizing: border-box;
  align-items: center;
 }

 /* Aumentata ampiezza del 5% (da 55% a 60%) */
 .box-input-testo {
  flex: 0 0 60%;
  width: 60%;
  display: flex;             
  align-items: center;       
  gap: 8px;                  
 }

 /* Stile applicato all'etichetta CiakPoint */
 .box-input-testo span {
  white-space: nowrap;       
  color: #00FF00; /* Verde Lime */
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: bold;
 }

/* ======================================================================
    12. CONTROLLI AZIONE (AGGIORNAMENTO CON LINK ?)
    ====================================================================== */
 .box-input-testo {
  flex: 0 0 60%;
  width: 60%;
  display: flex;             
  align-items: center;       
  gap: 6px;                  
 }

 .box-input-testo span {
  white-space: nowrap;       
  color: #00FF00; 
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: bold;
 }

 .campo-testo-box {
  flex: 1;
  width: 100%;
  height: 35px !important;     
  min-height: 35px !important; 
  max-height: 35px !important; 
  resize: none !important;     
  background-color: #1a1a1a;
  color: #ffffff !important;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 4px 8px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  box-sizing: border-box;
 }

 /* STILE PUNTO INTERROGATIVO LINK ? */
 .link-info-ciakpoint {
  color: #FFFF00 !important;
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none !important;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
 }

 .link-info-ciakpoint:hover {
  color: #FFFFFF !important;
 }

 .campo-testo-box:focus {
  outline: none;
  border-color: #00bcd4;
 }

 /* Ridotta ampiezza del 5% (da 45% a 40%) */
 .box-pulsanti-12 {
  flex: 0 0 calc(40% - 12px); 
  width: calc(40% - 12px);
  display: flex;
  gap: 10px;
 }

 .btn-box-azione {
  flex: 1;                    
  height: 35px;
  border: none;
  border-radius: 4px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
 }

 .btn-azione-1 { background-color: #6A00F0; color: #FFFFFF; }
 .btn-azione-2 { background-color: #6A00F0; color: #FFFFFF; }
 
 /* 1. Reset al passaggio del mouse sui link dentro la scheda */
.main-content-text a:hover { 
  text-decoration: none !important; 
}

/* 2. Allineamenti di testo (es. editor WYSIWYG / Quill) */
.ql-align-center, [style*='text-align: center'] { text-align: center !important; }
.ql-align-right { text-align: right !important; }
.ql-align-justify { text-align: justify !important; }

/* 3. Adattamento mobile per l'altezza e il font delle righe evento */

/* ======================================================================
    13. MEDIA QUERY UNIFICATA (MOBILE)
    ====================================================================== */
@media screen and (max-width: 768px) {
  
  html body .main-content-text, 
  html body .main-content-text p, 
  html body .main-content-text p *,
  html body .main-content-text a { 
   font-size: 14px !important; 
   line-height: 1.3 !important;
  }

  .mtit-titolo, .mtit-titolo *        { font-size: 16px !important; }
  .mtit-sottotitolo, .mtit-sottotitolo * { font-size: 15px !important; }
  .mtit-commento, .mtit-commento *   { font-size: 14px !important; }

  .mod-box {
   font-size: 12px;
   padding: 10px 5px;
  }
  .mod-titolo {
   font-size: 16px;
  }
  .mod-sottot {
   font-size: 14px;
  }

  /* Adattamenti Tabella Ricerca Mobile */
  .tabella-ricerca .header-tabella {
   font-size: 13px !important;
   height: auto;
   padding: 5px;
  }
  .tabella-ricerca .testo-etichetta {
   font-size: 16px !important;
   display: block;
   margin-bottom: 5px;
  }
  .tabella-ricerca select.campo-ricerca {
   font-size: 16px !important;
   height: 32px;
   width: 100%;
   margin-bottom: 8px;
  }
  .tabella-ricerca input.campo-testo {
   font-size: 18px !important;
   height: 32px;
   width: 60%;
  }
  .tabella-ricerca #submit2 {
   font-size: 18px !important;
   height: 34px;
   width: 70px;
  }
  .tabella-ricerca .note-ricerca {
   font-size: 13px !important;
  }

  .banner-modulo-testo { font-size: 0.8rem !important; }
  .banner-modulo-link { padding: 4px !important; }

  .header-logo-container { width: 50px; height: 50px; }
  .testo-header-titolo { font-size: 1.2rem !important; }
  .testo-header-sottot { font-size: 1.0rem !important; }
  .testo-header-1, .testo-header-2 { font-size: 0.8rem !important; }
  .testo-header-1gia { font-size: 1.1rem !important; }
  .testo-header-2gia { font-size: 0.9rem !important; }
  .testo-header-1lim { font-size: 1.1rem !important; }
  .testo-header-2lim { font-size: 0.9rem !important; }

  /* REGOLE MOBILE PER I 6 PULSANTI (box-buttons) */
.box-buttons { 
      /* Sul mobile le colonne mantengono la proporzione tra di loro */
      grid-template-columns: 1.02fr 1.02fr 1.02fr 1.02fr 1.02fr 0.9fr !important; 
      gap: 2px !important; 
    }
    .btn-green { margin-top: 2px; padding: 3px !important; }
    
    /* Il <br> va a capo attivando la suddivisione Bonus (sopra) / KK (sotto) */
    .btn-titolo br { display: block !important; } 
    .btn-titolo { 
      font-size: 2.9vw !important; 
      line-height: 1.1 !important; 
      white-space: normal !important; 
    }
    .btn-sottot { display: none !important; }     /* Sottotitolo nascosto come da regola esistente */

  .tabella-anni .header-tabella { font-size: 13px !important; height: auto; padding: 1px 1px; }
  .tabella-anni td { height: 26px !important; }
  .tabella-anni a.link-anno, 
  .tabella-anni .anno-disattivato {
   font-size: 14px !important; 
   line-height: 30px !important; 
   height: 100%;
  }

  /* Adattamenti Maschera Partecipanti Mobile */
  .wrapper-partecipanti { gap: 8px; }
  .riga-maschera { padding: 6px 6px; font-size: 1.3rem; }

  .text-footer-text p, .box-footer-text p { font-size: 0.85rem !important; }
  .titfondo, .titolodifondo { font-size: 1rem !important; }
  
  .box-sotto-pulsanti {
   flex-direction: row !important;
   flex-wrap: nowrap !important;
   align-items: center !important;
   gap: 4px !important;
   padding: 2px 4px !important;
  }

 .box-input-testo { 
      flex: 0 0 70% !important; 
      width: 70% !important; 
      gap: 3px !important; 
    }
    .box-input-testo span { font-size: 12px !important; }
    
    .campo-testo-box { 
      height: 28px !important; 
      min-height: 28px !important; 
      max-height: 28px !important; 
      font-size: 12px !important; 
      padding: 2px 4px !important; 
    }
    
    .link-info-ciakpoint { 
      font-size: 14px !important; 
      padding: 0 2px !important; 
    }

    .box-pulsanti-12 { flex: 0 0 30% !important; width: 30% !important; gap: 4px !important; }
    .btn-box-azione { height: 28px !important; font-size: 12px !important; padding: 0 1px !important; } 
    
  .riga-evento-sfumata { min-height: 30px; padding: 3px; }
  .eve-titolo, .eve-titolo-gia, .eve-dettaglio { font-size: 14px; }
}

</style>