/* ===================================
   VARIATION SELECTOR - Dark Minimal
   =================================== */

.ux-game-variations-wrapper {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 12px 15px;
    margin: 15px 0;
}

.ux-variation-group {
    margin-bottom: 0;
}

.ux-variation-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.ux-variation-label strong {
    color: #aaa;
    font-size: 13px;
}

.ux-variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;     font-family: monospace;
}

.ux-variation-option {
    position: relative;
    padding: 0px 6px;
    border: 1px solid #2a2a2a;
    background: #0f0f0f;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;  margin: 0;
}

button.ux-variation-option.selected {
    background-color: #364153;
    color: #5ec4ff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

/* Dấu tick góc trên phải */
.ux-variation-option::after {
    content: '✓';
    position: absolute;
    right: 4px;
    top: 2px;
    color: #4a9fd8;
    font-size: 11px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}