/* css/main.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
}
.editor-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f8f8f8;
}
.color-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}
.preview {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px solid #333;
}
.preview-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}
