/**
 * Table Layout Fixes - Version 2.0.0
 * Date: May 22, 2025
 * 
 * A minimal approach to prevent layout shifts in the cues table
 */

/* Hide the loading spinner completely */
.fi-ta-action-indicator {
    display: none !important;
}

/* Hide the playCue action button completely */
.hidden-action,
button[data-action="playCue"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
}

/* Ensure action cells don't shift layout */
.fi-ta-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}
