/* ESPACIADO DEL NAV */
body {
    background: #f5f5f5;
    font-family: Arial, sans-serif;
}

.historial-wrapper {
    margin-top: 130px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 45px;         /* SEPARACIÓN ENTRE TABLAS (igual Promiedos) */
    padding: 20px;
}

/* CONTENEDOR PRINCIPAL */
.historial-wrapper {
    margin-top: 130px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 45px;
    padding: 20px;
}

/* TABLAS BASE */
.tabla {
    background: #ffffff;
    padding: 0;
    border-radius: 14px;
    min-width: 360px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
}

/* TABLA IZQUIERDA → MÁS ANCHA */
.tabla-izquierda {
    width: 55%;        /* ANCHO MAYOR */
}

/* TABLA DERECHA → MÁS FINA */
.tabla-derecha {
    width: 10%;        /* ANCHO REDUCIDO */
}


/* TÍTULO COMO PROMIEDOS */
.titulo-tabla {
    background: #0d1b2a;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 19px;
    border-radius: 14px 14px 0 0;
}

/* TABLA INTERNA */
.tabla-promiedos {
    width: 100%;
    border-collapse: collapse;
}

/* CABECERA DE TABLAS */
.tabla-promiedos thead th {
    background: #e9ecef;
    padding: 10px;
    font-size: 15px;
    border-bottom: 2px solid #ccc;
    text-align: center;
    font-weight: 700;
}

/* FILAS */
.tabla-promiedos tbody tr {
    background: white;
    transition: 0.2s;
}

.tabla-promiedos tbody tr:hover {
    background: #f2f2f2;
}

/* CELDAS */
.tabla-promiedos td {
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

/* COLUMNA AÑO CENTRADA */
.anio {
    text-align: center;
    font-weight: bold;
    width: 80px;
}

/* ESCUDO */
.escudo {
    width: 26px;
    height: 27px;
    vertical-align: middle;
    margin-right: 8px;
    object-fit: contain;
}


/* EQUIPO */
.equipo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* COLUMNA TÍTULOS */
.titulos {
    text-align: center;
    font-weight: bold;
    color: #0d1b2a;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .historial-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .tabla {
        width: 90%;
    }
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-contenido {
    background: white;
    padding: 10px;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.popup img {
    width: 100%;
    height: auto;
}

.cerrar {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.col-tabla {
    width: 80px;
    text-align: right;
    padding-right: 10px;
}

.link-tabla {
    color: #3b3dad;       /* verde suave */
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.link-tabla:hover {
    text-decoration: underline;
}

