body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 20px;
}

.tablaUEFA {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.encabezado {
    background-color: #1d3557;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu {
    background-color: #1d3557;
    display: flex;
    justify-content: center;
    padding: 7px;
    margin-bottom: 20px;
}

.menu li {
    list-style: none;
    margin: 0 1px; 
}

.menu li a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
}

.menu li a:hover {
    background-color: #69d8dc;
    color: #1d3557;
    border-radius: 4px;
}

h1, h4 {
    color: #ffffff;
    margin: 0;
}

.partidos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.partido {
    background-color: #f2f4f8;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.global {
    color: #888;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 12px;
}

ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
ul li a {
    font-size: 25px;
    font-family: sans-serif;
    padding: 5px 10px;
    margin: 0px 10px;
    position: relative;
    transition: all .5s;
}

.estado {
    text-align: right;
    color: rgb(87, 94, 154);
    font-size: 12px;
}

.jugadores {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resultados {
    text-align: center;
    font-weight: bold;
    color: #1d3557;
    font-size: 16px;
    margin: 20px;
    
}

.equipos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.equipos img {
    width: 15px;
}