.modal{
    display:none;
    position:fixed;
    z-index:1000;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.modal-contenido{
    background:#fff;
    width:80%;
    max-width:800px;
    margin:5% auto;
    padding:20px;
    border-radius:10px;
    max-height:80vh;
    overflow-y:auto;
}

.cerrar{
    float:right;
    cursor:pointer;
    font-size:28px;
    font-weight:bold;
}
.partido{
    background:#f8f9fa;
    padding:10px 15px;
    margin-bottom:8px;
    border-radius:8px;
    border-left:5px solid #ddd;
}

.partido.cumple{
    background:#f0fff4;
    border-left:5px solid #28a745;
}

.partido.no-cumple{
    background:#fff5f5;
    border-left:5px solid #dc3545;
}
.fecha{
     font-size:12px;
    color:#666;
    margin-top:3px;
    margin-bottom:8px;
}

.resultado{
    font-size:16px;
    line-height:1.5;
}

.resultado strong{
    color:#000;
    font-size:15px;
    font-weight:600;
}

.ver-partidos{
    margin-top:15px;
    font-size:13px;
    color:#666;
}
