/* ============================================
   Color Panel Styles
   ============================================ */

.color-picker-area { display: flex; flex-direction: column; gap: 10px; }
#colorWheel { width: 100%; height: auto; border-radius: 4px; cursor: crosshair; }
.color-sliders { display: flex; flex-direction: column; gap: 6px; }
.color-slider-row { display: flex; align-items: center; gap: 8px; }
.color-slider-label { font-size: 11px; color: var(--text-dim); width: 12px; font-weight: 500; }

.color-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    cursor: pointer;
}

.color-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.color-slider-input {
    width: 40px;
    background: var(--bg-medium);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2px 4px;
    font-size: 10px;
    color: var(--text-primary);
    text-align: center;
}

.hex-input-row { display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.hex-label { font-size: 12px; color: var(--text-dim); }

.hex-input {
    flex: 1;
    background: var(--bg-medium);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 4px 8px;
    font-size: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.hex-input:focus { outline: none; border-color: var(--accent); }
