#variation-selector-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
     -webkit-flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.variation-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ccc;
    transition: transform 0.2s;
}

.variation-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.variation-circle.active {
    border: 2px solid white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}