.container {
    max-width: 1000px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.canvas-container {
    text-align: center;
}

.controls {
    margin: 20px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 5px;
}

canvas {
    border: 1px solid #ccc;
}

.text-controls {
    margin: 10px 0;
}

input, button {
    padding: 8px;
    margin: 5px;
}

button {
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #45a049;
}

#position {
    margin-top: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
} 