.table-container {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-y: auto;
}

    .table-container thead {
        position: sticky;
        top: 0;
        background-color: transparent;
    }

.table-esiti {
    border-spacing: 10px;
    width: 100%;
    height: fit-content;
    font-weight: 600;
}

    .table-esiti th, .table-esiti td {
        padding: 3px 5px;
        text-align: center;
    }

        .table-esiti th div, .table-esiti td div {
            padding: 10px 30px;
        }

        .table-esiti th div {
            background-color: #17af09;
            color: white;
            height: 100%
        }

    .table-esiti .back-1 {
        background-color: lightgray;
    }

    .table-esiti .back-2 {
        background-color: #f5f5f5;
    }

    .table-esiti tr:hover .back-1, .table-esiti tr:hover .back-2 {
        background-color: #94cb6d;
    }
 

.submitSection {
    display: flex;
    flex-direction: column;
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: 0 auto;
    margin-bottom: 10px;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}