body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #1e3c72, #022466);
    color: #fff;
    margin: 0;
    padding: 20px;
}
h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin: 50px 0 20px 0; /* Reducir margen superior */
}

.match-container {
    max-width: 800px;
    margin: 20px auto; /* Reducir margen superior */
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}
.match {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}
.team {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}
.score {
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 28px;
    margin: 0 20px;
    font-family: 'Courier New', Courier, monospace;
}
.mensaje {
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
    color: #ffeb3b;
    font-style: italic;
}
.update-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 20px;
}
.update-button:hover {
    background-color: #45a049;
}
a {
    display: block;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    color: #ffeb3b;
    font-weight: bold;
    font-size: 18px;
}
a:hover {
    color: #ffeb3b;
    text-decoration: underline;
}
.goleadores {
    font-size: 14px;
    color: #ffeb3b;
    font-weight: normal;
    margin-top: 5px;
}

/* Responsiveness */
@media (max-width: 600px) {
    h2 {
        font-size: 28px;
    }
    .match-container {
        padding: 10px;
    }
    .match {
        padding: 10px;
    }
    .team {
        font-size: 16px;
    }
    .score {
        font-size: 24px;
        padding: 8px 16px;
        margin: 0 10px;
    }
    .mensaje {
        font-size: 14px;
    }
    .update-button {
        font-size: 14px;
        padding: 8px 16px;
    }
    a {
        font-size: 16px;
    }
}
