.highscores-container {
    padding-top: 5%;
    display: flex;
    justify-content: space-between;
    color: white;
}

.left-section {
    /* Styles for the skill buttons section */
    width: 25%;
}

.skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-left: 15%;
    margin-right: 15%;
    background-color: rgba(60, 61, 60, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.4);
    padding-top: 0%;
    padding-bottom: 3%;
    height: 100%;
}

.skill {
    /* Styles for each skill button */
    cursor: pointer;
    display: flex;
    align-items: center;
    
}

.skill img {
    width: 23px;
    height: 23px;
    margin-right: 10px;
}

.right-section {
    /* Styles for the right section */
    width: 25%;
}

.game-modes {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    margin-left: 15%;
    margin-right: 15%;
    background-color: rgba(60, 61, 60, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.4);
    padding-top: 0%;
    padding-bottom: 3%;
    height: 75%;
}

#highscoresTable {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#highscoresTable td {
    border-bottom: 1px solid white; /* Add a border between rows */
}

.popup-highscores{
    width: 50%;
    display: flex;
    justify-content: center;
    background-color: rgba(60, 61, 60, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.4);
    max-height: 75vh;
    min-height: 75vh;
    overflow-y: auto;
}
table{
    text-align: center;
    border-collapse: separate;
    border-spacing: 0 10px;
}
h2 {
    text-align: center;
    margin-top: 1%;
}
h3{
    text-align: center;
}
.game-mode-button{
    background: linear-gradient(180deg, rgba(255,0,0,1) 0%, rgba(121,9,9,1) 100%);
    border: none;
    border-radius: 0px;
    color: white;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    width: 50%;
    margin: 1% auto;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 20px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    opacity: 0;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #880000; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #5f0000; 
  }