.dropdown {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 100;
    display: none;
}
.color-option {
    width: 120px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    position: relative;
    transition: all 0.2s ease;
}
.color-option:hover {
    transform: scale(1.1);
}
.color-preview {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.color-name {
    font-size: 14px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #FFF;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.color-name.inverted {
    color: #333;
}
.color-option:hover .color-name {
    opacity: 1;
}