/* 185 x 280 */
.game-board {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    height: 300px;
    width: 100%;
    height: 95vh;
}

.game-board-title {
    text-align: center;
}


.game-board-area {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: rgba(100,100,100,0.9);
    height: 75%;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 8px;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
    overflow-y: scroll; 
    overflow-x: scroll;
}
 
.game-board-area::-webkit-scrollbar {
    display: none; 
} 


.game-board-area-container {
    height: 90%;
}

.game-board-area-bottom-container {
    height: 10%;
    display: flex;
    width: 100%;
}

.game-board-trail {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;    
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.25) rgba(0,0,0,0.25);
}

.game-trail-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 85%;
    width: 185px;
    margin-left: 8px;
    margin-right: 8px;
}

.game-trail-card-3 {
    height: 80% !important;
    width: 160px;
    min-width: 160px;
}

.game-trail-card-4 {
    height: 70% !important;
    width: 140px;
    min-width: 140px;
}

.game-trail-separator {
    width: 40px;
}

.game-trail-image-first {
    margin-left: 24px;
}

.game-trail-name {
    font-family: "Sour Gummy", serif;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    max-width: 185px;
    text-align: center;
}

.game-board-player-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-right: 16px;
    margin-left: 16px;
    background-color: white;
    border-radius: 10px;
    width: 20%;
    overflow-x: hidden;
}

.game-board-player-label {
    font-family: "Sour Gummy", serif;
    color: #75050a;
    font-size: 1em;
    font-weight: 500;
}

.game-board-player-name {
    font-family: "Sour Gummy", serif;
    color: #75050a;
    font-size: 2em;
    font-weight: 500;
}

.game-board-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

.game-board-label {
    font-family: "Sour Gummy", serif;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    text-align: start;
    width: 100%;
}

.game-board-input {
    padding: 8px;
    border-radius: 8px;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
    height: 60px;
    font-size: 48px;
    text-transform: uppercase;
}

.game-board-area-bottom-end-game {
    display: flex;
    justify-content: center;
}