table * {
    border-collapse: collapse !important;
    text-align: center !important;
    vertical-align: middle !important;
}

th,
td * {
    color: black !important;
    padding: 8px !important;
}

td {
    color: black !important;
    padding: 8px !important;
}

thead th * {
    width: 25% !important;
}



thead * {
    background-color: #333 !important;
    color: white !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2% !important;
}



#label_giocatori {
    display: -webkit-inline-box !important;
    height: 30.59px !important;
}
#form-field-goal {
    border: 2px solid #1f2124 !important;
}

#cerca {
    margin-top: 20px;
    margin-bottom: 40px;
}


/* Stili di base per la popup */
.popup {
    display: none;
    position: fixed;
    width: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 3px solid #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%; 
    box-sizing: border-box;
    z-index: 1000;
}

/* Stili per i campi input */
.popup input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Stili per i bottoni */
.popup button {
    width: 48%; /* Larghezza dei bottoni, adattata per occupare meno spazio su schermi più piccoli */
    padding: 10px;
    margin-right: 2%; /* Margine destro per separare i bottoni */
    margin-bottom: 10px;
    cursor: pointer;
    box-sizing: border-box;
}

/* Media query per dispositivi con una larghezza massima di 768px (ad esempio, dispositivi mobili) */
@media only screen and (max-width: 768px) {
    .popup {
        width: 90%; 
    }

   
    .popup button {
        width: 100%;
        margin-right: 0;
    }
}


