/* Asegurar que el body ocupe el 100% */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #021545; /* fondo de color */
}

.equiposParticipantes, .calendarioGrupo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Contenedor de tabla con scroll */
.tabla {
    width: 100%;
    max-width: 1200px;
    overflow-x: auto; /* Permitir scroll horizontal */
    overflow-y: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-overflow-scrolling: touch; /* Smooth scroll en iOS */
}

#tablaGruposPMF, #tablaGruposPMM, #tablaGruposMF, #tablaGruposMM, #partidos {
    min-width: 100%; /* Permitir que se expanda si es necesario */
    border-collapse: collapse;
}

#tablaGruposPMF th, #tablaGruposPMM th, #tablaGruposMF th, #tablaGruposMM th, #partidos th {
    background-color: #DA4040;
    color: white;
    padding: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap; /* Evitar que el texto se divida */
    border-bottom: 2px solid white; /* Borde blanco */
}

#tablaGruposPMF td, #tablaGruposPMM td, #tablaGruposMF td, #tablaGruposMM td, #partidos td {
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px solid white; /* Borde blanco */
    white-space: nowrap; /* Evitar que el texto se divida */
    font-size: 14px;
}

#tablaGruposPMF tbody tr:hover, #tablaGruposPMM tbody tr:hover, #tablaGruposMF tbody tr:hover, #tablaGruposMM tbody tr:hover, #partidos tbody tr:hover {
    background-color: blue;
}

#tablaGruposPMF tbody tr:last-child td, #tablaGruposPMM tbody tr:last-child td, #tablaGruposMF tbody tr:last-child td, #tablaGruposMM tbody tr:last-child td, #partidos tbody tr:last-child td {
    border-bottom: 2px solid white !important; /* Borde blanco */
}

.botones {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Asegurar que el footer ocupe el 100% del ancho */
#footer-container {
    width: 100%;
    position: relative;
}

#footer-container .footer {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

/* Responsividad en pantallas pequeñas */
@media (max-width: 768px) {
    .equiposParticipantes, .calendarioGrupo {
        padding: 10px;
    }

    .tabla {
        max-width: 100%;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    #tablaGruposPMF, #tablaGruposPMM, #tablaGruposMF, #tablaGruposMM, #partidos {
        min-width: 500px; /* Ancho mínimo para que sea scrollable */
        font-size: 12px;
    }

    #tablaGruposPMF th, #tablaGruposPMM th, #tablaGruposMF th, #tablaGruposMM th, #partidos th {
        padding: 8px;
        font-size: 12px;
        border-bottom: 2px solid #021545;
    }

    #tablaGruposPMF td, #tablaGruposPMM td, #tablaGruposMF td, #tablaGruposMM td, #partidos td {
        padding: 8px 6px;
        font-size: 12px;
    }

    #tablaGruposPMF tbody tr:last-child td, #tablaGruposPMM tbody tr:last-child td, #tablaGruposMF tbody tr:last-child td, #tablaGruposMM tbody tr:last-child td, #partidos tbody tr:last-child td {
        border-bottom: 2px solid #021545;
    }
}

@media (max-width: 480px) {
    .equiposParticipantes, .calendarioGrupo {
        padding: 5px;
    }

    .tabla {
        max-width: 100%;
        overflow-x: auto;
        margin-bottom: 15px;
    }

    #tablaGruposPMF, #tablaGruposPMM, #tablaGruposMF, #tablaGruposMM, #partidos {
        min-width: 450px; /* Ancho mínimo para pantallas muy pequeñas */
        font-size: 11px;
    }

    #tablaGruposPMF th, #tablaGruposPMM th, #tablaGruposMF th, #tablaGruposMM th, #partidos th {
        padding: 6px;
        font-size: 11px;
        border-bottom: 2px solid #021545;
    }

    #tablaGruposPMF td, #tablaGruposPMM td, #tablaGruposMF td, #tablaGruposMM td, #partidos td {
        padding: 6px 4px;
        font-size: 11px;
    }

    #tablaGruposPMF tbody tr:last-child td, #tablaGruposPMM tbody tr:last-child td, #tablaGruposMF tbody tr:last-child td, #tablaGruposMM tbody tr:last-child td, #partidos tbody tr:last-child td {
        border-bottom: 2px solid #021545;
    }

    .botones {
        margin-top: 20px;
        gap: 5px;
    }
}


