 .color-picker-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 20px;
            font-family: Arial, sans-serif;
        }

        .form-label {
            font-size: 14px;
            font-weight: 500;
            color: #333;
            margin-bottom: 5px;
        }

        .color-picker-circle {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid #ccc;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.2s ease;
        }

        .color-picker-circle:hover {
            border-color: #007bff;
            transform: scale(1.05);
        }

        .color-picker-circle input[type="color"] {
            width: 100%;
            height: 100%;
            border: none;
            cursor: pointer;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
        }

        .color-display {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: #000;
            transition: background-color 0.2s ease;
        }
