/* ==========================================================================
   Capa visual - Importadores del Atlantico Norte
   Solo estilos. No cambia estructura ni funcionalidad.
   Cargar DESPUES de styles.css
   ========================================================================== */

:root {
    --ia-primary:      #1B2699;
    --ia-primary-soft: #eef0fb;
    --ia-border:       #e3e6f0;
    --ia-text-muted:   #6e7891;
    --ia-radius:       .5rem;
    --ia-shadow:       0 1px 2px rgba(18, 24, 60, .04), 0 2px 8px rgba(18, 24, 60, .06);
    --ia-shadow-hover: 0 2px 4px rgba(18, 24, 60, .06), 0 6px 16px rgba(18, 24, 60, .1);
}

body {
    background-color: #f6f7fb;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Titulos ---------- */

h1.mt-4 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -.015em;
    color: #1a1f36;
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* ---------- Tarjetas ---------- */

.card {
    border: 1px solid var(--ia-border);
    border-radius: var(--ia-radius);
    box-shadow: var(--ia-shadow);
}

.card-body { padding: 1.25rem; }

/* ---------- Tablas ---------- */

.table-responsive {
    border-radius: var(--ia-radius);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    margin-bottom: 0;
    font-size: .875rem;
    border-color: var(--ia-border);
}

.table > thead > tr > th {
    background-color: #f4f5fa;
    color: #3d4468;
    font-weight: 600;
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: .7rem .75rem;
    border-bottom: 2px solid var(--ia-border);
    vertical-align: middle;
}

.table > tbody > tr > td {
    padding: .65rem .75rem;
    vertical-align: middle;
    border-color: #eef0f6;
    color: #2c3151;
}

.table-bordered > tbody > tr:nth-child(even) > td {
    background-color: #fbfcfe;
}

.table-bordered > tbody > tr:hover > td {
    background-color: var(--ia-primary-soft);
}

/* Montos alineados a la derecha y tabulares */
.table td:has(> .text-end),
.table .amount {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* La tabla de filtros (borderless) no lleva hover ni zebra */
.table-borderless > tbody > tr:hover > td,
.table-borderless > tbody > tr:nth-child(even) > td {
    background-color: transparent;
}

.table-borderless > tbody > tr > td {
    padding: .35rem .4rem;
    border: 0;
}

/* ---------- Campos de texto ---------- */

.form-control,
.form-select {
    border: 1px solid #d5d9e6;
    border-radius: .375rem;
    font-size: .875rem;
    padding: .45rem .7rem;
    color: #2c3151;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ia-primary);
    box-shadow: 0 0 0 3px rgba(27, 38, 153, .12);
}

.form-control::placeholder { color: #a3aac4; }

.form-control:disabled,
.form-control[readonly] {
    background-color: #f4f5fa;
    color: var(--ia-text-muted);
}

/* ---------- Etiquetas de grupo ---------- */

.input-group { box-shadow: none; }

.input-group-text {
    background-color: #f4f5fa;
    border: 1px solid #d5d9e6;
    color: #4a5178;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    padding: .45rem .7rem;
    white-space: nowrap;
}

.input-group:focus-within .input-group-text {
    border-color: var(--ia-primary);
    background-color: var(--ia-primary-soft);
    color: var(--ia-primary);
}

label,
.form-label {
    font-size: .8rem;
    font-weight: 600;
    color: #4a5178;
    margin-bottom: .3rem;
}

/* ---------- Botones ---------- */

.btn {
    border-radius: .375rem;
    font-size: .85rem;
    font-weight: 500;
    transition: transform .1s ease, box-shadow .15s ease, filter .15s ease;
}

.btn:hover  { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }

.btn-icon-split .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-circle {
    width: 2rem;
    height: 2rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-circle + .btn-circle { margin-left: .25rem; }

/* ---------- Paginacion ---------- */

.pagination { margin-bottom: 0; }

.page-link {
    color: var(--ia-primary);
    border-color: var(--ia-border);
    font-size: .85rem;
}

.page-item.active .page-link {
    background-color: var(--ia-primary);
    border-color: var(--ia-primary);
}

/* ---------- Barra lateral ---------- */

.sb-sidenav .nav-link {
    border-radius: .375rem;
    margin: .1rem .5rem;
    font-size: .875rem;
    transition: background-color .12s ease;
}

.sb-sidenav-light .nav-link:hover {
    background-color: var(--ia-primary-soft);
    color: var(--ia-primary);
}

.sb-sidenav-menu-heading {
    font-size: .68rem;
    letter-spacing: .08em;
    color: #8b93b0;
    padding-top: 1rem;
}

/* ---------- Modales ---------- */

.modal-content {
    border: 0;
    border-radius: .625rem;
    box-shadow: 0 12px 40px rgba(18, 24, 60, .18);
}

.modal-header {
    border-bottom: 1px solid var(--ia-border);
    padding: 1rem 1.25rem;
}

.modal-title { font-size: 1.05rem; font-weight: 600; }

/* ---------- Toast ---------- */

.toast {
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(18, 24, 60, .2);
}

/* ==========================================================================
   Pantalla de inicio (dashboards)
   ========================================================================== */

/* La pantalla ocupa el alto disponible para que el logo quede abajo
   sin flotar a media pagina cuando hay poco contenido. */
.dash-page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 3.625rem - 3.5rem);
}

.dash-hero { margin-bottom: 1.5rem; }

.dash-greeting {
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: -.02em;
    color: #1a1f36;
    margin: 0;
}

.dash-subtitle {
    margin: .3rem 0 0;
    font-size: .875rem;
    color: var(--ia-text-muted);
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}

.dash-role {
    background: var(--ia-primary-soft);
    color: var(--ia-primary);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: .15rem .55rem;
    border-radius: 999px;
}

/* Logo al pie: empujado hasta abajo por el margin-top auto. */
.dash-brand {
    margin-top: auto;
    padding: 2.5rem 0 1.5rem;
    text-align: center;
}

.dash-brand::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 220px;
    height: 1px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(90deg, transparent, var(--ia-border), transparent);
}

.dash-brand img {
    height: 300px;
    width: auto;
    max-width: 88%;
    object-fit: contain;
    opacity: .9;
    mix-blend-mode: multiply;
    transition: opacity .2s ease;
}

.dash-brand img:hover { opacity: 1; }

.dash-section-title {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8b93b0;
    margin-bottom: .85rem;
}

/* ---------- Tarjeta de modulo ---------- */

.dash-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.15rem 1.15rem 1rem;
    background: #fff;
    border: 1px solid var(--ia-border);
    border-radius: .625rem;
    box-shadow: var(--ia-shadow);
    text-decoration: none;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.dash-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--tono);
    opacity: 0;
    transition: opacity .15s ease;
}

.dash-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ia-shadow-hover);
    border-color: var(--tono);
    text-decoration: none;
}

.dash-card:hover::before { opacity: 1; }

.dash-card-top { border-color: var(--tono); }
.dash-card-top::before { opacity: 1; }

.dash-badge {
    position: absolute;
    top: .8rem;
    right: .8rem;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--tono);
    background: var(--tono-soft);
    padding: .18rem .45rem;
    border-radius: 999px;
}

.dash-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: .55rem;
    background: var(--tono-soft);
    color: var(--tono);
    font-size: 1.1rem;
    margin-bottom: .85rem;
}

.dash-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f36;
    line-height: 1.25;
}

.dash-count {
    font-size: .8rem;
    color: var(--ia-text-muted);
    margin-top: .15rem;
}

.dash-count strong {
    color: #2c3151;
    font-size: 1.05rem;
    font-variant-numeric: tabular-nums;
    margin-right: .15rem;
}

.dash-bar {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: #eef0f6;
    margin: .8rem 0 .75rem;
    overflow: hidden;
}

.dash-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--tono);
    opacity: .75;
}

.dash-go {
    margin-top: auto;
    font-size: .8rem;
    font-weight: 500;
    color: var(--tono);
}

.dash-go i {
    transition: transform .15s ease;
    margin-left: .15rem;
}

.dash-card:hover .dash-go i { transform: translateX(3px); }

/* ---------- Tonos ---------- */

.dash-azul   { --tono: #1B2699; --tono-soft: #eef0fb; }
.dash-verde  { --tono: #128a5c; --tono-soft: #e7f5ef; }
.dash-ambar  { --tono: #b5730b; --tono-soft: #fdf3e3; }
.dash-indigo { --tono: #5b4bc4; --tono-soft: #f0edfc; }
.dash-rojo   { --tono: #c0392f; --tono-soft: #fdeeed; }
.dash-gris   { --tono: #55607d; --tono-soft: #eff1f6; }

/* ---------- Sin actividad ---------- */

.dash-empty {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: #fff;
    border: 1px dashed var(--ia-border);
    border-radius: .625rem;
}

.dash-empty i {
    font-size: 2.25rem;
    color: #c3c9dd;
    margin-bottom: .9rem;
}

.dash-empty h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #3d4468;
    margin-bottom: .5rem;
}

.dash-empty p {
    font-size: .875rem;
    color: var(--ia-text-muted);
    margin-bottom: .35rem;
}

.dash-empty-hint {
    font-size: .8rem !important;
    color: #a3aac4 !important;
}

/* ---------- Movil ---------- */

@media (max-width: 767.98px) {
    h1.mt-4 { font-size: 1.2rem; }

    .container-fluid.px-4 {
        padding-left: .75rem !important;
        padding-right: .75rem !important;
    }

    .card-body { padding: .75rem; }

    .table { font-size: .8rem; }

    .table > thead > tr > th,
    .table > tbody > tr > td {
        padding: .5rem .5rem;
        white-space: nowrap;
    }

    /* Filtros apilados: cada celda ocupa toda la fila */
    .table-borderless,
    .table-borderless tbody,
    .table-borderless tr {
        display: block;
        width: 100%;
    }

    .table-borderless td {
        display: block;
        width: 100% !important;
        padding: .25rem 0;
    }

    .btn-icon-split .text { display: none; }

    .toast-container {
        left: .5rem;
        right: .5rem;
        bottom: .5rem;
    }

    .toast { width: 100%; }

    /* Inicio */
    .dash-hero      { margin-bottom: 1.15rem; }
    .dash-greeting  { font-size: 1.25rem; }
    .dash-card      { padding: 1rem; }
    .dash-icon      { width: 2.25rem; height: 2.25rem; font-size: 1rem; margin-bottom: .6rem; }
    .dash-empty     { padding: 2.25rem 1rem; }
    .dash-brand     { padding: 2rem 0 1rem; }
    .dash-brand img { height: 78px; }
}

/* ==========================================================================
   Herramientas de contingencia (fallbackanular / fallbackrecrear)
   ========================================================================== */

.fb-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 .25rem;
}

.fb-title {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -.015em;
    color: #1a1f36;
    margin: 0;
}

.fb-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: .55rem;
    font-size: 1rem;
}

.fb-rojo .fb-title-icon { background: #fdeeed; color: #c0392f; }
.fb-azul .fb-title-icon { background: #eef0fb; color: #1B2699; }

.fb-lead {
    font-size: .82rem;
    color: var(--ia-text-muted);
    margin-bottom: 1.25rem;
}

.fb-card {
    background: #fff;
    border: 1px solid var(--ia-border);
    border-radius: .625rem;
    box-shadow: var(--ia-shadow);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.fb-card label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #4a5178;
    margin-bottom: .3rem;
}

.fb-card > small {
    display: block;
    font-size: .78rem;
    color: var(--ia-text-muted);
    margin-top: .45rem;
}

/* ---------- Datos de la factura ---------- */

.fb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: .85rem 1.25rem;
}

.fb-grid > div { display: flex; flex-direction: column; gap: .1rem; }
.fb-grid .fb-wide { grid-column: 1 / -1; }

.fb-grid span {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8b93b0;
}

.fb-grid strong {
    font-size: .9rem;
    font-weight: 600;
    color: #2c3151;
}

.fb-uuid {
    font-family: var(--bs-font-monospace);
    font-size: .78rem !important;
    word-break: break-all;
}

.fb-ok  { color: #128a5c !important; }
.fb-off { color: #c0392f !important; }

.fb-items {
    margin: 1.15rem 0 0;
    font-size: .82rem;
}

.fb-items thead th {
    font-size: .66rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #8b93b0;
    border-bottom: 1px solid var(--ia-border);
}

.fb-items tfoot td { border: 0; padding-top: .2rem; color: var(--ia-text-muted); }
.fb-items tfoot .fb-total td {
    font-weight: 700;
    color: #1a1f36;
    font-size: .92rem;
    border-top: 1px solid var(--ia-border);
    padding-top: .45rem;
}

/* ---------- Casillas explicadas ---------- */

.fb-check {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    padding: .85rem;
    margin-top: 1rem;
    background: #fafbfd;
    border: 1px solid var(--ia-border);
    border-radius: .45rem;
}

.fb-check input { margin-top: .2rem; flex-shrink: 0; }
.fb-check label { margin: 0; cursor: pointer; }
.fb-check label strong { display: block; font-size: .85rem; color: #2c3151; }
.fb-check label small {
    display: block;
    font-weight: 400;
    font-size: .78rem;
    line-height: 1.45;
    color: var(--ia-text-muted);
    margin-top: .2rem;
}

/* ---------- Avisos ---------- */

.fb-alert {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .9rem 1rem;
    border-radius: .5rem;
    border: 1px solid;
    margin-bottom: 1rem;
    font-size: .87rem;
}

.fb-alert i { font-size: 1.05rem; margin-top: .1rem; }
.fb-alert strong { display: block; }
.fb-alert pre {
    margin: .4rem 0 0;
    font-size: .76rem;
    white-space: pre-wrap;
    word-break: break-word;
    color: inherit;
    opacity: .85;
}

.fb-alert-ok    { background: #e7f5ef; border-color: #b9e2d1; color: #0d6b47; }
.fb-alert-error { background: #fdeeed; border-color: #f5c6c2; color: #96271f; }
.fb-alert-aviso { background: #fdf3e3; border-color: #f0dbb0; color: #8a5709; }

/* ---------- Acciones ---------- */

.fb-actions {
    display: flex;
    gap: .6rem;
    justify-content: flex-end;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ia-border);
    flex-wrap: wrap;
}

.fb-avanzado {
    margin-top: 1rem;
    border: 1px solid var(--ia-border);
    border-radius: .45rem;
    padding: .7rem .85rem;
    background: #fafbfd;
}

.fb-avanzado summary {
    cursor: pointer;
    font-size: .82rem;
    font-weight: 600;
    color: #4a5178;
}

.fb-avanzado p {
    font-size: .78rem;
    color: var(--ia-text-muted);
    margin: .6rem 0 .7rem;
}

.fb-next {
    background: #fff;
    border: 1px solid var(--ia-border);
    border-radius: .625rem;
    padding: 1.25rem;
    text-align: center;
}

.fb-next p { font-size: .88rem; color: var(--ia-text-muted); margin-bottom: .9rem; }
.fb-next .btn + .btn { margin-left: .4rem; }

.fb-bottom {
    text-align: center;
    padding: 1.75rem 0 2.5rem;
    font-size: .8rem;
    color: #a3aac4;
}

.fb-bottom a { color: var(--ia-text-muted); text-decoration: none; }
.fb-bottom a:hover { color: var(--ia-primary); text-decoration: underline; }
.fb-bottom span { margin: 0 .5rem; }

@media (max-width: 575.98px) {
    .fb-title    { font-size: 1.15rem; }
    .fb-card     { padding: 1rem; }
    .fb-actions  { justify-content: stretch; }
    .fb-actions .btn { flex: 1; }
}

/* ---------- Reemitir factura: bitacora de pasos ---------- */

.fb-steps-title {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #8b93b0;
    margin-bottom: .9rem;
}

.fb-steps { list-style: none; margin: 0; padding: 0; }

.fb-steps li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    padding: .7rem 0;
    border-bottom: 1px solid #eef0f6;
}

.fb-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.fb-steps i { font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.fb-step-ok  i { color: #128a5c; }
.fb-step-bad i { color: #c0392f; }

.fb-steps strong { display: block; font-size: .87rem; color: #2c3151; }

.fb-steps pre {
    margin: .2rem 0 0;
    font-size: .78rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
    color: var(--ia-text-muted);
    font-family: inherit;
}

.fb-nota {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    margin-top: 1rem;
    padding: .85rem;
    background: #eef0fb;
    border: 1px solid #d3d8f2;
    border-radius: .45rem;
}

.fb-nota i { color: var(--ia-primary); font-size: 1rem; margin-top: .1rem; }
.fb-nota strong { display: block; font-size: .85rem; color: #1a1f36; }
.fb-nota small {
    display: block;
    font-size: .78rem;
    line-height: 1.45;
    color: #4a5178;
    margin-top: .2rem;
}

/* ---------- Reemitir: modo lote ---------- */

.fb-lote-item {
    border: 1px solid var(--ia-border);
    border-left-width: 3px;
    border-radius: .45rem;
    padding: .75rem .9rem;
    margin-bottom: .6rem;
    background: #fff;
}

.fb-lote-item.lote-ok      { border-left-color: #128a5c; }
.fb-lote-item.lote-colgada { border-left-color: #b5730b; background: #fffdf7; }
.fb-lote-item.lote-error   { border-left-color: #c0392f; background: #fffbfb; }

.fb-lote-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .35rem;
}

.fb-lote-head i { font-size: .95rem; }
.lote-ok      .fb-lote-head i { color: #128a5c; }
.lote-colgada .fb-lote-head i { color: #b5730b; }
.lote-error   .fb-lote-head i { color: #c0392f; }

.fb-lote-head strong { font-size: .88rem; color: #1a1f36; }

.fb-lote-pos {
    margin-left: auto;
    font-size: .7rem;
    color: #a3aac4;
    white-space: nowrap;
}

.fb-lote-pasos { list-style: none; margin: 0; padding: 0 0 0 1.45rem; }

.fb-lote-pasos li { font-size: .79rem; padding: .12rem 0; }
.fb-lote-pasos li span { font-weight: 600; color: #4a5178; }
.fb-lote-pasos li.bad span { color: #96271f; }

.fb-lote-pasos pre {
    margin: 0 0 .15rem;
    font-family: inherit;
    font-size: .76rem;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
    color: var(--ia-text-muted);
}

/* Resumen */

.fb-resumen {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: .75rem;
}

.fb-resumen > div {
    text-align: center;
    padding: .85rem .5rem;
    border-radius: .45rem;
    border: 1px solid var(--ia-border);
}

.fb-resumen strong { display: block; font-size: 1.5rem; font-weight: 700; line-height: 1.1; }
.fb-resumen span   { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; }

.fb-resumen .r-ok { background: #e7f5ef; border-color: #b9e2d1; }
.fb-resumen .r-ok strong, .fb-resumen .r-ok span { color: #0d6b47; }
.fb-resumen .r-co { background: #fdf3e3; border-color: #f0dbb0; }
.fb-resumen .r-co strong, .fb-resumen .r-co span { color: #8a5709; }
.fb-resumen .r-er { background: #fdeeed; border-color: #f5c6c2; }
.fb-resumen .r-er strong, .fb-resumen .r-er span { color: #96271f; }

.fb-lista { font-size: .82rem; color: #2c3151; margin: .9rem 0 0; }
.fb-lista small { color: var(--ia-text-muted); }

/* Vista previa */

.fb-prev { font-size: .8rem; margin: 0; }
.fb-prev thead th {
    font-size: .66rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #8b93b0;
}
.fb-prev-bad td { background: #fffbfb !important; color: #96271f; }

/* Opciones de tienda */

.fb-radio { display: flex; flex-direction: column; gap: .5rem; }

.fb-radio > label {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    padding: .7rem .8rem;
    margin: 0;
    background: #fafbfd;
    border: 1px solid var(--ia-border);
    border-radius: .45rem;
    cursor: pointer;
    font-weight: 400;
}

.fb-radio input { margin-top: .2rem; flex-shrink: 0; }
.fb-radio strong { display: block; font-size: .85rem; color: #2c3151; }
.fb-radio small {
    display: block;
    font-size: .77rem;
    line-height: 1.45;
    color: var(--ia-text-muted);
    margin-top: .15rem;
}

.fb-nota-warn { background: #fdf3e3; border-color: #f0dbb0; }
.fb-nota-warn i { color: #b5730b; }

textarea.form-control { font-family: var(--bs-font-monospace); font-size: .85rem; }
