body {
    background-color: black;
    color: lightgray;
    font-family: cursive;
    font-size: 17px;
    text-align: center;
}

.indexMainPanel {
    display: none;
    height: 100%;
    left: 0px;
    margin: 0px;
    padding: 0px;
    position: relative;
    top: 0px;
    width: 100%;
    z-index: 1;
}

#indexMainMenu {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
}

.loginButton {
    cursor: pointer;
}

#gamesContainer,
#usersContainer,
.pickedGames {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.gameDiv {
    background-color: lightgray;
    border: darkslategray 5px solid;
    border-radius: 33px;
    color: darkslategray;
    font-size: 20px;
    font-weight: bold;
    margin: 10px;
    padding: 15px 25px;
    width: 175px;
}

.gameDivPicked {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 25%;
}

.gameDivPicked .gameBaseData,
.gameRatingPicked {
    width: 40%;
}

.gameName {
    height: 60px;
}

.gamePlayersCount {
    font-size: 15px;
}

.gameRating {
    width: 175px;
}

.gameRating img {
    cursor: pointer;
    margin: 3px;
    width: 25px;
}

.gameRatingPicked {
    border: 3px solid darkgray;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    font-size: 15px;
}

.gameRatingPicked img {
    margin: 1px;
    width: 15px;
}

.gameUserRating {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 2px 0px;
    width: 100%;
}

.pickableUser {
    background-color: palevioletred;
    border: darkred 3px dashed;
    border-radius: 25px;
    color: darkred;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    padding: 5px 20px;
}

.pickedUser {
    background-color: mediumseagreen;
    border: darkgreen 3px solid;
    color: darkgreen;
}

.hidden {
    display: none;
}