/* General body settings */
body {
    margin: 0;
    display: flex;
    flex-direction: row;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* Controller panel */
#controller {
    width: 400px;
    padding: 15px;
    background-color: #f4f4f4;
    overflow-y: auto;
    border-right: 2px solid #ccc;
}

#controller section {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

#controller h2 {
    margin-top: 0;
}

/* Input styling */
input[type="text"] {
    width: 45%;
    padding: 5px;
    margin: 5px 2px;
    font-size: 16px;
}

/* Buttons */
button {
    font-size: 20px;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

/* Players block */
#players div {
    margin-bottom: 10px;
}

/* Preview panel */
#preview {
    flex-grow: 1;
    background-color: black;
    position: relative;
    overflow: hidden;
}

canvas {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Fonts */
select {
    font-size: 16px;
    width: 100%;
    margin: 5px 0;
    padding: 5px;
}
