.variation-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1em;
}

.variation-button {
    padding: 8px 16px;
    background-color: #eee;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 4px;
}

.variation-button.selected {
    background-color: #0073aa;
    color: white;
    border-color: #0073aa;
}

.variation-button.disabled {
    background-color: #f7f7f7;
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: .5;
	text-decoration:line-through;
}

.variation-group > label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.variation-reset-button
{
	margin-bottom: 1em;
}