/* ── Dialog pill buttons (global, isolated CSS does not work in MudBlazor dialogs) ── */

.tcf-dialog-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tcf-dialog-content .tcf-extended-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tcf-dialog-content .tcf-extended-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--mafia-color-text-secondary, #888);
    text-transform: uppercase;
}

.tcf-dialog-content .tcf-extended-sub {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tcf-dialog-content .tcf-extended-label {
    font-size: 0.75rem;
    color: var(--mafia-color-text-secondary, #888);
}

.tcf-dialog-content .tcf-pill-row {
    display: flex;
    gap: 6px;
}

.tcf-dialog-content .tcf-pill-row--triple .tcf-pill {
    flex: 1;
    text-align: center;
}

.tcf-dialog-content .tcf-pill-years {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tcf-dialog-content .tcf-pill-years .tcf-pill {
    font-size: 0.72rem;
    min-width: 42px;
}

.tcf-dialog-content .tcf-pill {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--mafia-color-text-secondary, #999);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    white-space: nowrap;
}

.tcf-dialog-content .tcf-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.tcf-dialog-content .tcf-pill--active {
    background: rgba(0, 191, 114, 0.18);
    border-color: rgba(0, 191, 114, 0.5);
    color: #00bf72;
    font-weight: 600;
}
