* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 50%, #fff8e1 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .logo-img{
             display: flex;
            align-items: center;
            justify-content: center;
            background: white;
        }
        .mainTitle {
         text-align: center;
         color: #2e7d32;
         font-size: 2.5rem;
         font-weight: 700;
         margin-bottom: 20px;
         text-shadow: 1px 1px 2px rgba(0, 0,0, 0.1);
         font-family: 'arial', 'sans-serif';
        }
        .container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            width: 100%;
            animation: fadeIn 0.8s ease-out;
            border: 2px solid #81c784;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header-section {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
            border-radius: 15px;
            border: 1px solid #81c784;
        }

        .logo-area {
            margin-bottom: 20px;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 10px;
            border: 2px dashed #81c784;
            color: #666;
            font-style: italic;
        }

        h2 {
            color: #2e7d32;
            margin-bottom: 10px;
            font-size: 1.5em;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .subtitle {
            color: #555;
            font-size: 1.2em;
            font-weight: 500;
        }

        .info-banner {
            background: linear-gradient(135deg, #fff8e1, #ffecb3);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 30px;
            border-left: 4px solid #ffc107;
            font-size: 0.95em;
            color: #555;
        }

        .upload-area {
            margin-top: 30px;
            border: 3px dashed #81c784;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            background: #f9fff9;
        }

        .upload-area:hover {
            border-color: #66bb6a;
            background: #e8f5e8;
            transform: scale(1.02);
        }

        .upload-area.dragover {
            border-color: #4caf50;
            background: #e0f2e0;
        }

        .upload-icon {
            font-size: 4em;
            color: #81c784;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .upload-area:hover .upload-icon {
            transform: scale(1.1);
        }

        .upload-text {
            color: #2e7d32;
            font-size: 1.2em;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .upload-subtext {
            color: #666;
            font-size: 0.9em;
        }

        #fileInput {
            display: none;
        }

        .btn {
            background: linear-gradient(135deg, #81c784, #66bb6a);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 10px;
            box-shadow: 0 5px 15px rgba(129, 199, 132, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(129, 199, 132, 0.4);
            background: linear-gradient(135deg, #66bb6a, #4caf50);
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .btn.gold {
            background: linear-gradient(135deg, #ffc107, #ff9800);
            box-shadow: 0 5px 15px rgba(255,193,7,0.3);
        }

        .btn.gold:hover {
            background: linear-gradient(135deg, #ff9800, #f57c00);
            box-shadow: 0 8px 25px rgba(255,193,7,0.4);
        }

        .preview {
            margin: 20px 0;
            text-align: center;
        }

        .preview img {
            max-width: 100%;
            max-height: 300px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid #81c784;
        }

        .preview-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 10px;
            margin-bottom: 10px;
        }
        .preview-label {
            font-size: 0.95em;
            color: #2e7d32;
            margin-top: 6px;
            background: #e8f5e8;
            padding: 2px 10px;
            border-radius: 8px;
            box-shadow: 0 2px 8px #e0e0e0;
        }

        .processing-steps {
            background: white;
            border: 2px solid #c8e6c9;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            display: none;
        }

        .processing-steps h4 {
            color: #2e7d32;
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .step {
            display: flex;
            align-items: center;
            margin: 12px 0;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            background: #f9fff9;
        }

        .step.active {
            background: #e8f5e8;
            border-left: 4px solid #81c784;
        }

        .step.completed {
            background: #e0f2e0;
            border-left: 4px solid #4caf50;
        }

        .step-icon {
            margin-right: 15px;
            font-size: 1.3em;
            min-width: 30px;
        }

        .step-text {
            flex: 1;
            font-weight: 500;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            margin-top: 10px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #81c784, #66bb6a);
            border-radius: 4px;
            transition: width 0.3s ease;
            width: 0%;
        }

        .ocr-text {
            background: #f9fff9;
            border: 2px solid #c8e6c9;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            display: none;
        }

        .ocr-text h4 {
            color: #2e7d32;
            margin-bottom: 10px;
        }

        .ocr-text pre {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #c8e6c9;
            font-family: monospace;
            font-size: 0.9em;
            max-height: 200px;
            overflow-y: auto;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        .results {
            background: linear-gradient(135deg, #f9fff9, #e8f5e8);
            padding: 30px;
            border-radius: 15px;
            margin-top: 20px;
            border: 2px solid #81c784;
            display: none;
        }

        .results h3 {
            color: #2e7d32;
            margin-bottom: 20px;
            font-size: 1.5em;
            font-weight: 700;
        }

        .field-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        @media (max-width: 600px) {
            .field-group {
                grid-template-columns: 1fr;
            }
        }

        .field {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #c8e6c9;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .field label {
            font-weight: 600;
            color: #2e7d32;
            display: block;
            margin-bottom: 5px;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .field input {
            width: 100%;
            padding: 10px;
            border: 1px solid #c8e6c9;
            border-radius: 5px;
            font-size: 1em;
            background: #f9fff9;
            transition: border-color 0.3s ease;
        }

        .field input:focus {
            outline: none;
            border-color: #81c784;
            box-shadow: 0 0 5px rgba(129, 199, 132, 0.3);
        }

        .error {
            background: #ffebee;
            color: #c62828;
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 4px solid #e57373;
        }

        .success {
            background: #e8f5e8;
            color: #2e7d32;
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 4px solid #4caf50;
        }

        .warning {
            background: #fff8e1;
            color: #f57c00;
            padding: 15px;
            border-radius: 8px;
            margin: 10px 0;
            border-left: 4px solid #ffc107;
        }



/* Titolo sezione genitore */
.genitore-title {
    font-weight: bold;
    margin-bottom: 0.5em;
}

/* Modal riepilogo */
.modal-content {
    background: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    min-width: 320px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
}

.riepilogo-title {
    text-align: center;
    margin-bottom: 16px;
}

.riepilogo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.riepilogo-list li {
    margin-bottom: 8px;
    font-size: 1rem;
}

        .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  z-index: 9999;
}

#modalConfermaInvio .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fffde7, #ffe0b2 80%);
  border-radius: 14px;
  border: 2px solid #ffc107;
  box-shadow: 0 4px 24px rgba(255,193,7,0.12);
  min-width: 260px;
  max-width: 340px;
  padding: 24px 16px;
  text-align: center;
}
#modalConfermaInvio .riepilogo-title {
  color: #f57c00;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
  text-shadow: 1px 1px 2px #ffe0b2;
}
#modalConfermaInvio .modal-content div {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 18px;
}
#closeConfermaBtn {
  margin: 12px auto 0 auto;
  display: block;
  font-size: 1em;
  padding: 10px 28px;
  border-radius: 30px;
}

.genitore-area {
  margin: 2em 0 1.5em 0;
  padding: 24px 18px 12px 18px;
  background: linear-gradient(135deg, #fffde7, #ffe0b2 80%);
  border-radius: 14px;
  border: 2px solid #ffc107;
  box-shadow: 0 2px 12px rgba(255,193,7,0.08);
  text-align: center;
}
.genitore-title {
  font-size: 2em;
  color: #f57c00;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
  text-shadow: 1px 1px 2px #ffe0b2;
}
.genitore-subtitle {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 0.5em;
}
.hidden {
  display: none !important;
}
.centered-text {
  text-align: center;
}
.mt-5 {
  margin-top: 5px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.upload-fallback {
  color: #d35400;
  font-size: 1rem;
  background: #fffbe6;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 8px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
@media (max-width: 600px) {
  .upload-fallback {
    font-size: 1.1rem;
    padding: 12px 8px;
    margin-top: 12px;
  }
}

/* Pulsanti upload/camera con animazione */
.active-btn {
    box-shadow: 0 0 0 4px #ffe082;
    background: #fffde7;
    border-color: #ffd600;
    transition: box-shadow 0.2s, background 0.2s;
}

/* Modale conferma invio migliorata */
.modal-success {
    border: 2px solid #2e7d32;
    background: linear-gradient(135deg, #e8f5e8 0%, #fffde7 100%);
}
.riepilogo-title {
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 10px;
}
.logo-img-el {
    max-height: 80px;
    display: block;
    margin: 0 auto 10px auto;
}
.admin-btn-bar {
    width: 100vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 18px 0 0;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.admin-btn {
    background: #fffbe6;
    color: #2e7d32;
    border: 1.5px solid #2e7d32;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05em;
    padding: 7px 18px;
    box-shadow: 0 2px 8px #eee;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.admin-btn:hover {
    background: #ffe082;
    color: #1b5e20;
}
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.18);
    justify-content: center;
    align-items: center;
}
.modal .modal-content {
    background: #fff;
    margin: 60px auto;
    padding: 28px 22px 18px 22px;
    border-radius: 14px;
    max-width: 420px;
    box-shadow: 0 6px 32px #aaa;
    position: relative;
}
.admin-login-error {
    color: #c00;
    margin-top: 10px;
}
.admin-dashboard {
    display: none;
    background: #fff;
    border-radius: 12px;
    margin: 30px auto 0 auto;
    max-width: 900px;
    box-shadow: 0 4px 24px #bbb;
    padding: 24px 18px 18px 18px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 1.01em;
  background: #fff;
  box-shadow: 0 2px 12px #eee;
}
.admin-table th, .admin-table td {
  border: 1px solid #e0e0e0;
  padding: 7px 8px;
  text-align: center;
}
.admin-table th {
  background: #f5f5f5;
  font-weight: 700;
  color: #2e7d32;
}
.admin-table tr:nth-child(even) {
  background: #fafafa;
}
.admin-img-preview {
  max-width: 70px;
  max-height: 50px;
  border-radius: 7px;
  border: 1.5px solid #2e7d32;
  box-shadow: 0 1px 4px #bbb;
}
.admin-download-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.97em;
  color: #2e7d32;
  text-decoration: underline;
  font-weight: 600;
}
.admin-download-link:hover {
  color: #1b5e20;
  text-decoration: none;
}
/* Stili per sicurezza */
.security-badge {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
}

.security-note {
    background: #e8f5e8;
    border-left: 4px solid #2e7d32;
    padding: 8px 12px;
    font-size: 12px;
    color: #2e7d32;
    margin-top: 4px;
    border-radius: 0 4px 4px 0;
}

.security-notice {
    background: #fff3e0;
    border: 1px solid #ff9800;
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 14px;
    color: #e65100;
}

.security-status {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.status-item {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #4caf50;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-security-info {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 12px;
    color: #6a1b9a;
    text-align: center;
}

.masked-data {
    font-family: monospace;
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 4px;
    color: #666;
}

.secure-table {
    border: 2px solid #4caf50;
}

.secure-table th {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
}

.inactivity-modal .modal-content {
    border: 3px solid #ff9800;
    background: #fff3e0;
}

.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    color: white;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4caf50;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-msg-eta, .success-msg-eta {
    font-size: 12px;
    margin-top: 4px;
    padding: 4px 8px;
    border-radius: 4px;
}

.error-msg-eta {
    background: #ffebee;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

.success-msg-eta {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Responsive per sicurezza */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .security-status {
        justify-content: center;
    }
    
    .admin-info {
        width: 100%;
        justify-content: center;
    }
}
/* ===== ADMIN DASHBOARD STYLES ===== */
.admin-dashboard {
    display: none;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 2px solid #2e7d32;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.security-status {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.status-item {
    background: #e8f5e8;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #2e7d32;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.table-controls {
    display: flex;
    gap: 10px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.admin-table th,
.admin-table td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.admin-table th {
    background: #2e7d32;
    color: white;
    font-weight: bold;
}

.admin-table tbody tr:hover {
    background: #f5f5f5;
}

.masked-data {
    font-family: monospace;
    background: #fff3e0;
    padding: 4px 8px;
    border-radius: 4px;
    color: #e65100;
}

.doc-thumbnail {
    max-width: 60px;
    max-height: 40px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ddd;
}

.download-link {
    font-size: 12px;
    color: #1976d2;
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2e7d32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.warning {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    text-align: center;
    margin: 20px 0;
}

.security-notice {
    background: #e3f2fd;
    color: #0d47a1;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    border-left: 4px solid #2196f3;
}
/* ===== TABELLA ADMIN CON DATI COMPLETI ===== */
.full-data-table {
    font-size: 12px;
    min-width: 1400px;
}

.full-data-table th,
.full-data-table td {
    padding: 8px 6px;
    vertical-align: top;
    border-right: 1px solid #e0e0e0;
}

.full-data-table th {
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

/* Stili per le colonne */
.row-number {
    width: 40px;
    text-align: center;
    font-weight: bold;
    background: #f8f9fa;
}

.student-name, .student-surname {
    min-width: 80px;
    font-weight: bold;
    color: #1976d2;
}

.birth-info {
    min-width: 120px;
    font-size: 11px;
}

.fiscal-code, .doc-number {
    min-width: 110px;
}

.doc-validity {
    min-width: 80px;
    font-size: 10px;
}

.parent-name, .parent-surname {
    min-width: 80px;
    color: #2e7d32;
}

.parent-docs {
    min-width: 100px;
}

.contacts {
    min-width: 120px;
}

.address {
    min-width: 150px;
}

.document-cell {
    width: 80px;
    text-align: center;
}

.registration-date {
    min-width: 100px;
}

/* Dati sensibili con evidenziazione */
.sensitive-data {
    background: #fff3e0;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    border: 1px solid #ffcc02;
    color: #e65100;
    font-weight: bold;
}

/* Alternanza colori righe */
.full-data-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.full-data-table tbody tr:nth-child(odd) {
    background: white;
}

.full-data-table tbody tr:hover {
    background: #e3f2fd !important;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

/* Container scrollabile */
.admin-table-container {
    overflow-x: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 10px 0;
}

/* Thumbnails documenti */
.doc-thumbnail {
    max-width: 50px;
    max-height: 35px;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: transform 0.2s ease;
}

.doc-thumbnail:hover {
    transform: scale(1.5);
    z-index: 100;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Link download */
.download-link {
    font-size: 10px;
    color: #1976d2;
    text-decoration: none;
    display: block;
    margin-top: 2px;
}

.download-link:hover {
    text-decoration: underline;
}

/* Responsive per tablet */
@media (max-width: 1200px) {
    .full-data-table {
        font-size: 10px;
    }
    
    .full-data-table th,
    .full-data-table td {
        padding: 6px 4px;
    }
    
    .sensitive-data {
        font-size: 9px;
        padding: 1px 2px;
    }
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .full-data-table {
        font-size: 9px;
    }
    
    .admin-table-container {
        border: none;
        border-radius: 0;
        margin: 0;
    }
    
    .table-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .table-controls {
        justify-content: center;
    }
}

/* Evidenziazione celle importanti */
.student-name, .student-surname {
    border-left: 3px solid #1976d2;
}

.parent-name, .parent-surname {
    border-left: 3px solid #2e7d32;
}

.fiscal-code, .doc-number {
    border-left: 3px solid #ff9800;
}

/* Header più informativo */
.security-notice {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-left: 4px solid #2e7d32;
    color: #1b5e20;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.security-notice::before {
    content: "🛡️";
    font-size: 20px;
}

.iscrizioni-chiuse-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.iscrizioni-chiuse-title {
  color: #c0392b;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.iscrizioni-chiuse-desc {
  font-size: 1.5rem;
  color: #222;
  text-align: center;
  max-width: 600px;
  margin-bottom: 2rem;
}
.iscrizioni-chiuse-contact {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
}