/* Color Scheme Selector Component Styles */
.asc-color-selection {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
}

.asc-color-selection__option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border: 2px solid transparent;
}

.asc-color-selection__option:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.asc-color-selection__option--selected {
    border-color: var(--text-primary);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.asc-color-selection__option--blue {
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-blue-dark));
}

.asc-color-selection__option--red {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.asc-color-selection__option--purple {
    background: linear-gradient(135deg, #a855f7, #6b21a8);
}

.asc-color-selection__option--yellow {
    background: linear-gradient(135deg, #f59e0b, #b45309);
}