/* custom-loader.css */

/* ── Overlay ─────────────────────────────────────────────── */
#global-loader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(48, 51, 55, 0.40); /* mesma cor do sidebar escuro do sistema */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ── Card central ────────────────────────────────────────── */
#global-loader .loader-card {
    background: #ffffff;
    border-radius: 6px; /* --bs-border-radius-sm do tema */
    padding: 24px 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    border-top: 3px solid #3c8dbc; /* cor primária do sistema */
    min-width: 150px;
}

/* ── Spinner ─────────────────────────────────────────────── */
#global-loader .loader-ring {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

#global-loader .loader-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid #d2d6de; /* cor de borda padrão do sistema */
    border-top-color: #3c8dbc;  /* primária do sistema */
    animation: gl-spin 0.8s linear infinite;
}

/* ── Texto ───────────────────────────────────────────────── */
#global-loader .loader-text {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* ── Animação ────────────────────────────────────────────── */
@keyframes gl-spin { to { transform: rotate(360deg); } }
