﻿
/* ----------------------------
    REPORTS
----------------------------- */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    overflow: auto; /* was: hidden */
}

.sigma-loader-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    height: 100%;
    z-index: 10;
    background: #fff;
    transition: opacity 0.3s ease;
}

    .sigma-loader-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

.sigma-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e9ecef;
    border-top-color: #14767B;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}


.sigma-loader-text {
    margin-top: 16px;
    font-size: 14px;
    color: #888;
}

.sigma-iframe-wrapper {
    position: relative;
}

#sigmaiframe {
    inset: 0;
    width: 100%;
    border: none;
    height: 100vh;
}

.embed-loader-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 10;
    transition: opacity 0.3s ease;
    opacity: 1;
}

    .embed-loader-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

.embed-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e9ecef;
    border-top-color: #14767B;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.embed-loader-text {
    margin-top: 16px;
    font-size: 14px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.iframe-embed-wrapper {
    position: relative;
}

.embed-frame {
    /* position: absolute; */
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
