/*
 * app.css — Entry point CSS del tablero IRCNL
 * Centro de Inteligencia Catastral — Fase 2
 *
 * ORDEN DE IMPORTACIÓN OBLIGATORIO (Brand Manual sección 15.1):
 *   1. Tokens IRCNL    — SIEMPRE PRIMERO
 *   2. Bootstrap 5     — no duplicar si ya está en _Host.cshtml
 *   3. Componentes     — extienden y sobreescriben Bootstrap
 *
 * Referencia en _Host.cshtml (después de Bootstrap, antes de cualquier otro CSS):
 *   <link rel="stylesheet" href="css/app.css" />
 *   <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
 *   <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" />
 *   <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" />
 *
 * Generado el: 16/03/2026
 */

/* 1. Tokens IRCNL — SIEMPRE PRIMERO */
@import url('ircnl-tokens.css');

/* 2. Bootstrap 5 — descomentar SOLO si NO está en _Host.cshtml */
/* @import url('../lib/bootstrap/dist/css/bootstrap.min.css'); */

/* 3. Componentes institucionales */
@import url('ircnl-components.css');

/* 4. Blazor Error UI — requerido por Blazor Server */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-family: var(--font-body);
}
#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
