body {
        background-color: #222; 
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: white;
        margin: 0;
        padding: 20px;
    }
	#canvas {
        border: solid 10px #fff; 
        width: 100%; 
        max-width: 1600px; 
        display: block; 
        margin: 0 auto;
        background-color: #f4f1ea; 
        cursor: crosshair;
    }
    h1 {
        font-size: 1.5em; 
        text-align: center;
        margin-bottom: 10px;
    }
    p {
        text-align: center;
        color: #aaa;
        font-size: 1em;
    }

.palette-container {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        padding: 15px;
        background-color: #333;
        border-radius: 8px;
    }
    .swatch {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        transition: transform 0.2s;
    }
    .swatch:hover {
        transform: scale(1.1);
    }
    .palette-label {
        text-align: center;
        color: #ccc;
        font-size: 0.8em;
        margin-top: 5px;
    }