@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.bundle.scp.css';

/* _content/Api.Comercio.Informal/Components/Pages/BuscarFolio.razor.rz.scp.css */
/* BuscarFolio.razor.css */

/* Contenedor que limita el área de visualización */
.resultado-scroll-container[b-68yoxxtc02] {
    /* Calculamos la altura: 100% de pantalla menos el encabezado y buscador (aprox 300px) */
    height: calc(100vh - 240px);
    overflow-y: auto; /* Solo scroll vertical si el contenido excede la altura */
    padding: 1rem;
    background-color: #f0f2f5; /* Fondo gris para resaltar el formulario blanco */
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

/* Estilos de la tarjeta para que parezca una hoja dentro del scroll */
.card-folio-detalle[b-68yoxxtc02] {
    max-width: 900px;
    margin: 0 auto; /* Centra la tarjeta horizontalmente */
    background-color: white;
}

.text-guinda[b-68yoxxtc02] {
    color: #9D2449;
    margin: 15px 0 15px 0 
}

/* Estilo para las etiquetas del formulario */
.lbl-info[b-68yoxxtc02] {
    display: block;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 2px;
}

/* Estilo para los valores recuperados */
.val-info[b-68yoxxtc02] {
    display: block;
    font-size: 1rem;
    color: #212529;
    margin: 0 0 5px 0;
    word-break: break-all;
}

/* Animación de entrada suave */
.animate-fade-in[b-68yoxxtc02] {
    animation: fadeIn-b-68yoxxtc02 0.5s ease-in-out;    
}

@keyframes fadeIn-b-68yoxxtc02 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media print {
    /* Si decides imprimir el detalle individual */
    .card[b-68yoxxtc02] {
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }

    .card-header[b-68yoxxtc02] {
        background-color: #eee !important;
        color: #000 !important;
        border-bottom: 1px solid #000 !important;
    }
}
/* _content/Api.Comercio.Informal/Components/Pages/CorteCaja.razor.rz.scp.css */
/* CorteCaja.razor.css */

/* Contenedor gris de fondo (Mesa de trabajo) */
.reporte-wrapper[b-agcsn9ib8a] {
    background-color: #f0f2f5;
    /* --- CAMBIOS PARA SCROLL INTERNO --- */
    height: calc(100vh - 270px); /* Ajusta este valor según el tamaño de tus filtros */
    overflow-y: auto; /* Habilita scroll vertical solo aquí */
    padding: 2rem;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    flex-direction: column;
}

/* La Hoja de Papel */
.hoja-reporte[b-agcsn9ib8a] {
    background-color: white;
    width: 100%;
    max-width: 1000px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    height: fit-content; /* Permite que la hoja crezca según el contenido */
    box-sizing: border-box;
}

/* ... (el resto de tus estilos: separador, total-general-bg, etc, se mantienen igual) ... */

/* === AJUSTE VITAL PARA IMPRESIÓN === */
@media print {
    .reporte-wrapper[b-agcsn9ib8a] {
        background-color: white;
        padding: 0;
        display: block;
        height: auto !important; /* Quitamos la altura fija para que salga todo en papel */
        overflow: visible !important; /* Quitamos el scroll */
    }

    .hoja-reporte[b-agcsn9ib8a] {
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
}
/* _content/Api.Comercio.Informal/Components/Pages/Home.razor.rz.scp.css */
/* Home.razor.css */

/* Contenedor pasivo: No altera márgenes ni paddings, solo da contexto a la imagen */
.home-layout-standard[b-w3kqi0136y] {
    position: relative;
    width: 100%;
    /* Min-height para asegurar que la imagen de fondo tenga espacio si hay poco texto */
    min-height: 80vh;
    /* No agregamos padding aquí, ya lo tiene el <article class="px-4"> del MainLayout */
}

    /* La Marca de Agua */
    .home-layout-standard[b-w3kqi0136y]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Configuración de la imagen */
        background-image: url('/img/escudo.png');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 300px; /* O el tamaño que gustes */
        /*opacity: 0.75;*/ /* Sutil */
        z-index: 0; /* Detrás del texto */
        pointer-events: none;
    }

/* Línea dorada decorativa */
.home-divider[b-w3kqi0136y] {
    border: 0;
    height: 3px;
    background-color: #DDC686; /* Dorado Oficial */
    opacity: 1;
} 
/* _content/Api.Comercio.Informal/Components/Pages/Usuarios.razor.rz.scp.css */
.text-guinda[b-acxtyamsrm] {
    color: #9D2449;
}

.bg-guinda[b-acxtyamsrm] {
    background-color: #9D2449;
}
