
.leaderboard-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);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    margin: 1%;
    
}


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

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

.Leaderboard-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: 2rem;
}

#header-text {
    margin-right: 10vw;
    margin-left: 9vw;
}

#brown-logo img, #putr-logo img {
    width: 10vw;
    height: auto;
}

#putr-logo img {
    width: 14vw;
    height: auto;
}

.flag-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 6vw; */
}

.player-flag {
    width: 5vw;
    margin: 1.5%;
    /* border: 0.2vh solid black; */
    /* box-shadow: 0 0 0.2vh 0.2vh rgba(243, 243, 243, 0.5); */
    
}

.player-putr {
    font-size: 2rem;
    text-align: center;
}

.player-net {
    font-size: 2rem;
    text-align: center;
}

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

.player-name a {
    text-decoration: none;
    color: rgb(0,0,238);
}

.player-name a:visited {
    text-decoration: none;
    color: rgb(0,0,238);
}

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

body {
    background-color: #f0f0f0;
}


.profile-container {
  text-align: center;
}

button {
    padding: 1vh 4vh;
    text-decoration: none;
    color: #3498db;
    border: 1px solid #2980b9;
    border-radius: 5px;
    margin: 0.5%;
    font-size: 2vh;
}

#lineChart {
    width: 100%;
    height: auto;
}
/* 
#playerStats {
    display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#playerStats .stat-card {
    flex: 0 1 25%;
} */


#stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
  }
  
  .stat-card {
    flex: 1 1 24%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease-in-out;
  }
  
  .stat-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .stat-value {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
  }
  
  .stat-label {
    font-size: 1em;
    color: #666;
  }




















