:root{
    --remasMainColor: #343A40;
    --remasWhiteColor: #F8F8F8;
    --remasBgColor: #DCDCDC;
}
.color-picker{
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    padding: 6px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.color-swatch{
    min-width: 33px;
    height: 33px;
    border-radius: 5px;
    border: solid transparent 3px;
    transition: border-color 0.2s ease-in-out, transform 0.2s ease;
}

.color-swatch:hover {
        transform: scale(1.1);
        border-color: rgba(255, 255, 255, 0.5);
}

.color-swatch.selected{
    border-color: rgba(255, 255, 255, 0.7);;
    box-shadow: 0 0 0 3px var(--remasMainColor), 0 2px 5px rgba(0, 0, 0, 0.3);
}