    /* Stile Test Punti Stazionari */
        body { font-family: Arial, sans-serif; margin: 20px; }
        fieldset { margin-bottom: 15px; padding: 10px; border: 1px solid #ccc; }
        legend { font-weight: bold; }
        .result { margin-top: 20px; padding: 15px; background-color: #f0f0f0; }
        .correct { color: green; }
        .wrong { color: red; }
        .unanswered { color: #666; }
        .Stile1 {color: black}
        /* Stile per centrare il contenitore del bottone */
        .center-button-container {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .left-image, .right-image {
            max-height: 60px;
            height: auto;
            width: auto;
            max-width: 48%;
            object-fit: contain;
        }
        .header-box {
            width: 100%;
            border: 2px dashed #28a745;
            box-sizing: border-box;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            min-height: 80px;
            border-radius: 8px;
            margin-bottom: 25px;
            background: white;
            flex-wrap: wrap;
            gap: 10px;
        }
        .Stile2 {
            color: black;
            font-size: 20px;
        }
        /* Stili per le soluzioni */
        .solution-container {
            margin-top: 10px;
            padding: 10px;
            background-color: #e9e9e9;
            border-left: 5px solid #007bff;
            display: none; /* Inizialmente nascosto */
        }
        .solution-button {
            margin-top: 5px;
            padding: 8px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9em;
            display: block;
        }
        .solution-button:hover {
            background-color: #0056b3;
        }

        /* STILI AGGIORNATI PER I BOTTONI NEL FOOTER */
        input[type="submit"], .reset-button, .index-button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
            margin: 5px;
            display: inline-block;
        }

        input[type="submit"] {
            background-color: #28a745; /* Verde */
            color: white;
        }

        input[type="submit"]:hover {
            background-color: #218838; /* Verde più scuro al passaggio del mouse */
        }

        .reset-button { /* Nuovo stile per il bottone "Rifai il Test" */
            background-color: #ff8c00; /* Arancione */
            color: white;
        }

        .reset-button:hover {
            background-color: #e07b00; /* Arancione più scuro */
        }

        .index-button {
            background-color: #007bff; /* Blu */
            color: white;
        }

        .index-button:hover {
            background-color: #0056b3; /* Blu più scuro al passaggio del mouse */
        }

