body {
    background-color: #1e1e1e;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

.tabla-container {
    max-width: 700px;
    margin: 5px auto;
    border: 2px solid gold;
    border-radius: 4px;
    padding: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

thead {
    background-color: #2a2a2a;
}

th, td {
    padding: 15px;
}

tr:not(:last-child) {
    border-bottom: 2px solid gold;
}

.equipo-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 480px) {
    th, td {
        font-size: 12px;
        padding: 4px;
    }
}
