body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    width: 100vw;
    height: 100vh;
    /* max-width: 800px; */
    max-height: 500px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#start-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.control {
    display: flex;
    gap: 20px;
    align-items: center;
}

.player-area {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.player-name {
    font-weight: bold;
    margin-bottom: 10px;
}
.queues {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.queue {
    width: 60px;
    height: 120px;
    border: 1px solid #333;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    justify-content: flex-start;
}

.queue.opposite {
    flex-direction: column-reverse;
}

.unit {
    margin: 5px 0;
    padding: 10px;
    border: 1px solid #333;
    background-color: #888;
}

.hand {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.hand .unit {
    margin: 0 5px;
}

.player-stats {
    margin-top: 10px;
}

.draggable {
    cursor: grab;
}

.unit.draggable {
    background-color: #eee;
}