/* table_export */

/* Fallback when popup_manager.css isn't loaded — keep popup hidden until opened. */
#te-popup.p2-overlay { display: none; position: fixed; inset: 0; background: rgba(15,23,42,0.45); z-index: 9100; align-items: center; justify-content: center; padding: 24px; }
#te-popup.p2-overlay.p2-open,
#te-popup.p2-overlay[aria-hidden="false"] { display: flex; }

/* Size overrides for this popup's .p2-card / .p2-body (shared shell rules
   come from popup_manager.css; only the export-specific sizing lives here). */
#te-popup .p2-card { max-width: 760px; }
#te-popup .p2-body { padding: 18px; }

/* Generate / Copy / Download action row. */
.te-actions-row { display: flex; gap: 8px; margin: 14px 0; }

/* Status text next to the action buttons ("Copied!" / "Downloaded"). */
.te-status { margin-left: auto; color: #16a34a; font-size: var(--fs-sm); }

/* Export output textarea. */
#te-output {
    width: 100%;
    min-height: 240px;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: var(--fs-xs);
    background: var(--table-header-bg);
}
