#generate-game-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

#generate-game{
    width: 990px;
    min-height: 360px;
    text-align: center;
    margin-bottom: 50px;
}

#generate-game p{
    text-align: left;
}

#generate-game button{
    margin-top: 35px;
    margin-bottom: 35px;
}

#generate-game-form-wrapper{
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
}

#generate-game-tables-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.table-wrapper select {
    width: 200px;
}

.table-wrapper input:not([type]){
    width: 200px;
}

#generate-game-form-wrapper table td{
    text-align: left;
    padding-right: 0.5rem;
    vertical-align: top;
    width: 230px;
}

#generate-form-button-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#file-input{
    display: none;
}

#upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    margin: 20px 0;
    transition: all 0.3s ease;
    margin-bottom: 35px;
}

#upload-area.drag-over {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
}

#drag-drop-text {
    margin: 0;
    color: #666;
    font-size: 14px;
}
