
.color-container{
    position:relative;
}

.dropdown {
    position: absolute;
    /* bottom: 0; */
    left: 0;
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 16px;
    flex-wrap: nowrap;
    z-index: 99;
}

.css-color {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    margin-bottom: 8px;
    background: white;
    border-radius: 0;
    border:none;
    transition: background-color 250ms ease-in-out;
}

    .css-color:hover {
        background: #1ebbd7;
    }

.color-name {
    /* margin-left: 8px; */
    padding: 4px 8px;
    background: #ffffffbe;
    border-radius: 2px;
}
