#league-table-container { width: 60%; justify-content: center; align-items: center; } #standings-table { width: 100%; padding: 5px; } #club-logo { width: 20px; margin-right: 5px; cursor: pointer; } #club-name { cursor: pointer; } #standings-table td { padding: 5px; } /* Define styles for odd and even rows */ #standings-table tbody tr:nth-child(odd) { background-color: #f2f2f2; /* Light gray for odd rows */ } #standings-table tbody tr:nth-child(even) { background-color: #ffffff; /* White for even rows */ }