 /* Reset leggero per velocità e consistenza */
        /*body {
            
            font-family: sans-serif;
            background-color: #f8f9fa;
            color: #212529;
            display: flex;
            flex-direction: column; 
            align-items: center;    
            min-height: 100vh;
            margin: 0;
            padding: 60px 20px;     
            gap: 30px;              
        }/*

        /* Contenitore con angoli arrotondati e ombra */
        .table-wrapper {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            width: 100%;
            max-width: 900px;
            border: 1px solid #e9ecef;
			margin: 0 auto 50px auto;
            margin-top: 50px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        /* SEO: Caption visibile e semantica */
        caption {
            padding: 1.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            text-align: left;
            color: #111;
            /* Utilizzo il colore come accento sotto il titolo */
            background-color: #6ecfff;
            border-bottom: 3px solid #3399cc;
        }

        th {
            /* Applico il colore di sfondo richiesto all'intestazione */
            background-color: #D1F3FA;
            color: #000000;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }

        th, td {
            padding: 1rem 1.5rem;
        }

        /* GESTIONE LARGHEZZA COLONNE */
        /* Restringo la prima colonna */
        th:nth-child(1) {
            width: 50%; 
        }
        /* Allargo la seconda e la terza dividendo lo spazio rimanente */
        th:nth-child(2), 
        th:nth-child(3) {
            width: 25%;
        }

        /* Linee divisorie leggere */
        tr {
            border-bottom: 1px solid #f1f3f5;
        }

        /* Rimuovi bordo dall'ultima riga per non rovinare l'angolo arrotondato */
        tr:last-child {
            border-bottom: none;
        }

        /* Effetto hover per usabilità */
        tbody tr:hover {
            background-color: #f8f9fa;
        }

        /* Responsive semplice */
        @media (max-width: 600px) {
            th, td { padding: 0.75rem 1rem; }
            caption { padding: 1rem; }
        }
                /* STILE PER LE ANNOTAZIONI TRA LE TABELLE */
        .table-note {
            text-align: center;      /* Centra il testo all'interno del box */
            font-style: italic;      
            color: #555;             
            
            /* GESTIONE DIMENSIONE BOX */
            width: 90%;              /* Occupa quasi tutta la larghezza su mobile */
            max-width: 700px;        /* Non diventa troppo largo su desktop */
            
            /* MARGINI: -20px sopra, AUTO a destra/sinistra (FONDAMENTALE PER CENTRARE), 30px sotto */
            margin: -20px auto 30px auto;     
            
            line-height: 1.5;
        }