/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 20px;
    color: #00bcd4;
    font-size: 32px;
}

.controls {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.controls label, .controls select, .controls button {
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #1e1e1e;
    color: white;
}

.controls select {
    cursor: pointer;
}

.controls button {
    cursor: pointer;
    background-color: #007bff;
    transition: 0.3s;
    border: none;
}

.controls button:hover {
    background-color: #0056b3;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    overflow-x: auto;
    padding: 20px;
}

canvas {
    border: 2px solid white;
    background-color: #2b2b2b;
    max-width: 100%;
    height: auto;
}
