body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to right, #90f1cc, #9698ffa4);
    color: #333;
}

h1 {
    color: #006437; 
    font-size: 2.2em;
    margin: 20px 0;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

h1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #006437;
}

h1 i.fa-trophy {
    color: #f7bd00; 
    margin-left: 10px;
}

table {
    width: 100%;
    max-width: 700px;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

thead {
    background-color: #006437;
    color: white;
}

th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9em;
}

tbody tr {
    border-bottom: 1px solid #eaeaea;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f0f7f3; 
}

td {
    padding: 12px 16px;
}

td:first-child {
    font-weight: 700;
    color: #006437;
}

img.escudo {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

tbody tr:first-child {
    background-color: #f7f7f7;
    border-left: 3px solid #f7c800; 
}

tfoot td {
    background-color: #f0f0f0;
    text-align: center;
    padding: 10px;
    font-size: 0.8em;
    color: #666;
}