/* Subtle highlight animation for export buttons when they become enabled */
.export-enabled-flash {
  animation: efp-export-flash 900ms ease-in-out;
}
@keyframes efp-export-flash {
  0% { filter: drop-shadow(0 0 0 rgba(13,110,253,0.15)) brightness(0.95); }
  40% { filter: drop-shadow(0 0 8px rgba(13,110,253,0.25)) brightness(1); }
  100% { filter: drop-shadow(0 0 0 rgba(13,110,253,0.15)) brightness(0.95); }
}

/* Accessible visual focus ring for toggled export buttons */
.export-enabled-focus:focus {
  outline: 3px solid rgba(13,110,253,0.25);
  outline-offset: 2px;
}

/* Utility: fixed width column for small numeric columns to avoid inline styles (CSP-safe) */
.table-col-num-48 { width: 48px; }
