
.color-picker {
    position: relative;
    display: inline-block;
}

.selected-color {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    background-color: #03a9f4;
}

.color-options {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    z-index: 1;
}

.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
}

.color-option:hover {
    transform: scale(1.1);
}

.circle-color{
    margin-left: 5px;
    padding-left: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 50%;
}
