/* --- Estilos para a Nova Tabela de Elenco --- */
.sa-squad-table-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.sa-squad-position-group {
    margin-bottom: 30px;
}
.sa-squad-position-group h3 {
    font-size: 16px;
    color: #555;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin: 0 0 10px 0;
    font-weight: 600;
}
.sa-squad-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.sa-squad-table thead th {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    text-align: left;
    padding: 8px;
    font-weight: 500;
    background-color: #f9f9f9;
}
.sa-squad-table tbody td {
    padding: 10px 8px;
    border-top: 1px solid #f0f0f0;
    vertical-align: middle;
    text-align: center; /* Centraliza a maioria das colunas */
}
.sa-squad-table th:first-child, .sa-squad-table td:first-child { /* Coluna # */
    width: 30px;
    text-align: center;
    color: #aaa;
}
.sa-squad-table th.sa-col-player-name, .sa-squad-table td.sa-player-name-cell {
    text-align: left;
    width: 40%; /* Ajuste a largura conforme necessário */
}
.sa-player-name-cell {
    display: flex;
    align-items: center;
    font-weight: 600;
}
.sa-player-flag {
    width: 18px;
    height: 12px;
    margin-right: 8px;
    box-shadow: 0 0 1px rgba(0,0,0,0.3);
}
/* Alinha as colunas de estatísticas */
.sa-squad-table th:nth-child(n+3), .sa-squad-table td:nth-child(n+3) {
    text-align: center;
    width: 50px; /* Largura fixa para colunas de stats */
}