﻿:root {
    --brand-verde-principal: #2A3F3C;
    --brand-verde-secundario: #44524E;
    --brand-verde-grisaceo: #808E8A;
    --brand-dorado-principal: #BA9153;
    --brand-dorado-claro: #D4B78C;
    --brand-beige-dorado: #E9D7C2;
    --brand-marron-dorado: #877867;
    --brand-blanco: #FFFFFF;
    --brand-texto: #111111;
}

body {
    color: var(--brand-texto);
}

a {
    color: var(--brand-dorado-principal);
}

    a:hover {
        color: var(--brand-marron-dorado);
    }


.report-viewer-wrapper {
    position: relative;
}

.report-viewer-frame {
    width: 100%;
    height: calc(100vh - 180px);
    border: 0;
}

.report-loading-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    z-index: 10;
}