.table-container {
    display: flex;
    flex-direction: column;  
    border: 1vh solid #ddd;
    padding: 1vh;
    margin: 1vh;
    box-shadow: 0 0 1vh rgba(0, 0, 0, 0.2);
}
.utr-table {
    border-collapse: collapse;
    background-color: #fff;
    margin: 1%;
    
}

.utr-table th, .utr-table td {
    padding: 1vh;
    text-align: center;
}

.utr-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.utr-table tr:nth-child(odd) {
    background-color: #fff;
}

#table-header th {
    background-color: #007BFF;
    color: #fff;
    font-weight: bold;
    padding: 2vh;
    text-align: center;
}

.rank {
    /* width: 5vw; */
    /* margin: 1.5%; */
    text-align: center;
    font-size: 2rem;
}

.player-name {
    font-size: 1.2rem;
    text-align: center;
}

.player_id {
    font-size: 1.2rem;
    text-align: center;
}

.utr-rating {
    font-size: 2rem;
    text-align: center;
}


.wtn-rating {
    font-size: 2rem;
    text-align: center;
}

.win-loss {
    font-size: 1.6rem;
    text-align: center;
}

.school {
    font-size: 1.2rem;
    text-align: center;
}

#table-header th{
    padding: 2vh;
}

.page-header {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    margin: 1vh;

} 


.rating-select:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
    }

.search-container {
    display: flex;
    justify-content: center;
    margin: 1vh;
}

.rating-select-container {
    display: flex;
    justify-content: center;
    margin: 1vh;
}

input, select {
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px; /* Add space below the elements */
    box-sizing: border-box;
    font-size: 16px; /* Larger font size for better readability */
}

#search-bar {
    width: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rating-select-container select {
    width: 30%;
    cursor: pointer;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#reset-button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    margin: 1vh;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* #leaderboard-table tbody tr:nth-child(even) {
    background-color: lightgrey;
}

#leaderboard-table tbody tr:nth-child(odd) {
    background-color: white;

}

.table-header {
    width: 100%;
} */

