/* 
    DIALOG CONTAINER (SPANS ENTIRE SCREEN)
*/
#game-select-menu-container {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 5;

    width: 100vw;
    height: 100vh;

    background-color: rgba(0, 0, 0, 0.7);
}   

/*
    MODAL
*/
#game-select-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;

    min-width: 400px;
    width: 50vw;

    border-radius: 10px;
    background-color: var(--primary-color);
    color: white;
}

/*
    MODAL TITLE
*/
#game-select-menu h1 {
    margin: 0 0 10px 0;
}

/*
    GAMES LIST TIME PERIOD
*/
#game-select-period {
    margin-bottom: 10px;
    font-size: 24px;
}

/*
    GAMES LIST CONTAINER
*/
#games-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 20px;

    width: 90%;
    max-height: 420px;
    overflow-x: hidden;
    overflow-y: auto;

    background-color: #232323;
}

#games-list::-webkit-scrollbar {
    background-color: #0e0e0e;
}

#games-list::-webkit-scrollbar-thumb {
    background-color: #f5f5f5;
}

/*
    GAME LISTING
*/
.game-listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 5px;
    padding: 5px;
    border-radius: 10px;

    

    width: 100%;

    background-color: var(--secondary-color);
    cursor: pointer;
}
#games-list{
    border-radius: 10px;
    background-color: #0e0e0e !important;
}
/*
    PAGINATION BUTTONS
*/
#game-select-page-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
    margin-top: 10px;
    gap: 10px;
}

/*
    CANCEL SELECTION BUTTON
*/
#game-select-cancel-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;

    padding: 10px 50px;
    border-radius: 10px;
    font-size: 20px;
    background-color: var(--primary-color);
    color: white;

    text-shadow: 0px 1px 2px black;
    width: 90%;
    border: 2px solid black;
    cursor: pointer;
    outline: none;
    user-select: none;
    box-shadow: 0px 5px 0px rgb(0, 0, 0.6);
}

#game-select-cancel-button:active {
    box-shadow: 0px 0px 0px;
    transform: translateY(5px);
}

.move-btn{
    margin: 0px 0px 0px 0px;
    flex-wrap: wrap;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: none;
    background: none;
    border: none;
}
.move-btn i{
    background-color: black;
    border-radius: 10px;
    font-size: 25px;
    padding: 10px 15px 10px 15px;
    cursor: pointer;
}