    .gf-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid #334155;
        background: #0f172a;
        color: #cbd5e1;
        border-radius: 0.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        cursor: pointer;
        transition: border-color 0.15s ease, background 0.15s ease;
    }
    .gf-option:has(input:checked) {
        border-color: #f59e0b;
        background: rgba(245, 158, 11, 0.08);
        color: #fbbf24;
    }
    .gf-option input { accent-color: #f59e0b; }

    .dg-button:disabled,
    .dg-button.dg-disabled {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
    }

    #gf-suggestions li {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        color: #cbd5e1;
        cursor: pointer;
    }
    #gf-suggestions li mark {
        background: transparent;
        color: #fbbf24;
        font-weight: 600;
    }
    #gf-suggestions li:hover,
    #gf-suggestions li.gf-active {
        background: rgba(245, 158, 11, 0.12);
    }