/* style.css */

body {
    margin: 0;
    display: flex;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #222;
    color: white;
}

#controller {
    width: 400px;
    padding: 20px;
    overflow-y: auto;
    background-color: #333;
}

#controller section {
    margin-bottom: 20px;
}

#controller h2 {
    margin-top: 0;
    font-size: 24px;
}

#controller input[type="text"],
#controller select,
#controller button {
    width: 100%;
    padding: 12px;
    margin: 6px 0;
    font-size: 18px;
}

#controller button {
    font-weight: bold;
    font-size: 22px; /* Bigger buttons as requested */
}

#preview {
    flex: 1;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scoreboardCanvas {
    max-width: 100%;
    max-height: 100%;
    background: black;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    #controller {
        width: 100%;
        height: auto;
    }
}
