.color_picker {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
}

.color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.1s;
    position: relative;
}

.color:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.color.active {
    box-shadow: 0 0 0 2px #0a0a0a, 0 0 0 4px #fff;
}

.color {
    border: 2px solid transparent;
    background-color: var(--color);
}