/*
 * BF Enterprise Console UI
 * BF Facturador Electrónico — Consola de operación tributaria
 * Principios: sobrio, técnico, fiscal, alta densidad, sin gradientes, sin emojis.
 */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --bf-navy:        #1e2d45;
  --bf-navy-hover:  #16243a;
  --bf-navy-active: #0f1c2e;
  --bf-sidebar-w:   220px;
  --bf-sidebar-txt: #a8bdd0;
  --bf-sidebar-hdr: #5c7a99;
  --bf-sidebar-act: #e2edf8;
  --bf-topbar-h:    48px;
  --bf-body-bg:     #eef1f5;
  --bf-surface:     #ffffff;
  --bf-border:      #d0d9e4;
  --bf-border-lt:   #e8ecf1;
  --bf-text:        #1c2a3a;
  --bf-text-muted:  #5a6b7c;
  --bf-green:       #1a7a3c;
  --bf-green-bg:    #ecf8f1;
  --bf-green-dk:    #145e2e;
  --bf-amber:       #b45309;
  --bf-amber-bg:    #fef9ec;
  --bf-red:         #b91c1c;
  --bf-red-bg:      #fef2f2;
  --bf-blue:        #1d4ed8;
  --bf-blue-bg:     #eff4fe;
  --bf-celeste:     #0369a1;
  --bf-celeste-bg:  #eff8ff;
  --bf-gray:        #5a6b7c;
  --bf-gray-bg:     #f4f6f9;
  --bf-gray-lt:     #e8ecf1;
}

/* ── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; font-size: .875rem; color: var(--bf-text); background: var(--bf-body-bg); margin: 0; }
a { color: var(--bf-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-size: .8rem; color: var(--bf-navy); background: var(--bf-gray-bg); padding: .1em .3em; border-radius: 3px; }

/* ── Shell layout ────────────────────────────────────────────────────────── */
.bf-shell { display: flex; min-height: 100vh; }

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.bf-sidebar {
  width: var(--bf-sidebar-w);
  background: var(--bf-navy);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.bf-sidebar-brand {
  padding: 1rem 1rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.bf-sidebar-brand-name {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  display: block;
}
.bf-sidebar-brand-sub {
  font-size: .68rem;
  color: var(--bf-sidebar-hdr);
  display: block;
  margin-top: 1px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bf-sidebar-nav { flex: 1; padding: .5rem 0; }
.bf-sidebar-section {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bf-sidebar-hdr);
  padding: .75rem 1rem .25rem;
}
.bf-sidebar-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem 1rem;
  color: var(--bf-sidebar-txt);
  font-size: .8rem;
  white-space: nowrap;
  border-left: 2px solid transparent;
  transition: background .1s, color .1s;
}
.bf-sidebar-link:hover { background: rgba(255,255,255,.06); color: #fff; text-decoration: none; border-left-color: rgba(255,255,255,.2); }
.bf-sidebar-link.active { background: rgba(255,255,255,.1); color: var(--bf-sidebar-act); border-left-color: var(--bf-sidebar-act); font-weight: 600; }
.bf-sidebar-link i { font-size: .9rem; opacity: .8; flex-shrink: 0; }
.bf-sidebar-link.active i { opacity: 1; }
.bf-sidebar-footer {
  padding: .75rem 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .72rem;
  color: var(--bf-sidebar-hdr);
}

/* ── Main content ────────────────────────────────────────────────────────── */
.bf-main {
  margin-left: var(--bf-sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Topbar ─────────────────────────────────────────────────────────────── */
.bf-topbar {
  height: var(--bf-topbar-h);
  background: var(--bf-surface);
  border-bottom: 1px solid var(--bf-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.bf-topbar-left { display: flex; align-items: center; gap: 1rem; }
.bf-topbar-right { display: flex; align-items: center; gap: .75rem; }
.bf-env-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 3px;
  border: 1px solid;
}
.bf-env-badge.cert { background: var(--bf-amber-bg); color: var(--bf-amber); border-color: #f5d68a; }
.bf-env-badge.prod { background: var(--bf-red-bg); color: var(--bf-red); border-color: #fca5a5; }
.bf-topbar-user { font-size: .78rem; color: var(--bf-text-muted); }
.bf-topbar-sep { width: 1px; height: 18px; background: var(--bf-border); }

/* ── Page content ───────────────────────────────────────────────────────── */
.bf-content { flex: 1; padding: 1.5rem 1.5rem; }

/* ── Page header ───────────────────────────────────────────────────────── */
.bf-page-header { margin-bottom: 1.25rem; }
.bf-page-title { font-size: 1.1rem; font-weight: 700; color: var(--bf-text); margin: 0; }
.bf-page-subtitle { font-size: .78rem; color: var(--bf-text-muted); margin-top: .15rem; }
.bf-page-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }

/* ── Section ─────────────────────────────────────────────────────────────── */
.bf-section { background: var(--bf-surface); border: 1px solid var(--bf-border); border-radius: 5px; margin-bottom: 1rem; }
.bf-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem .9rem;
  border-bottom: 1px solid var(--bf-border-lt);
  font-size: .78rem;
  font-weight: 700;
  color: var(--bf-text);
  background: var(--bf-gray-bg);
  border-radius: 5px 5px 0 0;
}
.bf-section-header-label { display: flex; align-items: center; gap: .4rem; }
.bf-section-body { padding: .9rem; }
.bf-section-body-flush { }

/* ── KPI grid ───────────────────────────────────────────────────────────── */
.bf-kpi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: .75rem; margin-bottom: 1rem; }
.bf-metric-card {
  background: var(--bf-surface);
  border: 1px solid var(--bf-border);
  border-radius: 5px;
  padding: .75rem .9rem;
}
.bf-metric-value { font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--bf-text); }
.bf-metric-label { font-size: .72rem; color: var(--bf-text-muted); margin-top: .2rem; }
.bf-metric-card.ok    .bf-metric-value { color: var(--bf-green); }
.bf-metric-card.warn  .bf-metric-value { color: var(--bf-amber); }
.bf-metric-card.error .bf-metric-value { color: var(--bf-red); }
.bf-metric-card.info  .bf-metric-value { color: var(--bf-blue); }

/* ── Status card (config items) ─────────────────────────────────────────── */
.bf-status-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .75rem; margin-bottom: 1rem; }
.bf-status-card {
  background: var(--bf-surface);
  border: 1px solid var(--bf-border);
  border-left: 3px solid var(--bf-border);
  border-radius: 4px;
  padding: .6rem .8rem;
}
.bf-status-card.ok    { border-left-color: var(--bf-green); }
.bf-status-card.warn  { border-left-color: var(--bf-amber); }
.bf-status-card.error { border-left-color: var(--bf-red); }
.bf-status-card.info  { border-left-color: var(--bf-blue); }
.bf-status-card.muted { border-left-color: #b0bec5; }
.bf-status-card-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--bf-text-muted); }
.bf-status-card-value { font-size: .82rem; font-weight: 600; color: var(--bf-text); margin-top: .15rem; }
.bf-status-card-detail { font-size: .72rem; color: var(--bf-text-muted); margin-top: .1rem; }

/* ── State badges ───────────────────────────────────────────────────────── */
.bf-state {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .15rem .45rem;
  border-radius: 3px;
  white-space: nowrap;
}
.bf-state-ok      { background: var(--bf-green-bg); color: var(--bf-green-dk); }
.bf-state-warn    { background: var(--bf-amber-bg); color: var(--bf-amber); }
.bf-state-error   { background: var(--bf-red-bg); color: var(--bf-red); }
.bf-state-info    { background: var(--bf-blue-bg); color: var(--bf-blue); }
.bf-state-celeste { background: var(--bf-celeste-bg); color: var(--bf-celeste); }
.bf-state-muted   { background: var(--bf-gray-bg); color: var(--bf-gray); }
.bf-state-dark    { background: #2d3a4a; color: #c8d8e8; }

/* ── Tables ─────────────────────────────────────────────────────────────── */
.bf-table { width: 100%; border-collapse: collapse; font-size: .8rem; }
.bf-table th {
  padding: .45rem .7rem;
  background: var(--bf-gray-bg);
  border-bottom: 1.5px solid var(--bf-border);
  color: var(--bf-text-muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}
.bf-table td {
  padding: .4rem .7rem;
  border-bottom: 1px solid var(--bf-border-lt);
  vertical-align: middle;
}
.bf-table tbody tr:last-child td { border-bottom: none; }
.bf-table tbody tr:hover { background: #f7f9fc; }
.bf-table .text-right, .bf-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.bf-table-wrap { overflow-x: auto; }
.bf-table-action { text-align: right; white-space: nowrap; }

/* ── Filter panel ───────────────────────────────────────────────────────── */
.bf-filter-panel {
  background: var(--bf-gray-bg);
  border: 1px solid var(--bf-border);
  border-radius: 4px;
  padding: .65rem .9rem;
  margin-bottom: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: flex-end;
}
.bf-filter-panel .form-control,
.bf-filter-panel .form-select {
  font-size: .8rem;
  padding: .3rem .55rem;
  border-color: var(--bf-border);
  height: 30px;
}

/* ── Action bar ─────────────────────────────────────────────────────────── */
.bf-action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .65rem .9rem;
  border-bottom: 1px solid var(--bf-border-lt);
  background: var(--bf-gray-bg);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.bf-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.4;
}
.bf-btn i { font-size: .85rem; }
.bf-btn-primary  { background: var(--bf-navy); color: #fff; border-color: var(--bf-navy); }
.bf-btn-primary:hover  { background: var(--bf-navy-hover); color: #fff; text-decoration: none; }
.bf-btn-outline  { background: transparent; color: var(--bf-text); border-color: var(--bf-border); }
.bf-btn-outline:hover  { background: var(--bf-gray-bg); text-decoration: none; }
.bf-btn-ghost    { background: transparent; color: var(--bf-blue); border-color: transparent; }
.bf-btn-ghost:hover    { background: var(--bf-blue-bg); text-decoration: none; }
.bf-btn-danger   { background: var(--bf-red-bg); color: var(--bf-red); border-color: #fca5a5; }
.bf-btn-danger:hover   { background: #fee2e2; text-decoration: none; }
.bf-btn-sm { padding: .2rem .5rem; font-size: .72rem; }

/* ── Alert banners ──────────────────────────────────────────────────────── */
.bf-admin-alert {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .6rem .9rem;
  border-radius: 4px;
  font-size: .8rem;
  margin-bottom: .75rem;
  border: 1px solid;
}
.bf-admin-alert i { font-size: .95rem; flex-shrink: 0; margin-top: .05rem; }
.bf-admin-alert.ok      { background: var(--bf-green-bg); color: var(--bf-green-dk); border-color: #bbf7d0; }
.bf-admin-alert.warn    { background: var(--bf-amber-bg); color: #7c3d12; border-color: #fde68a; }
.bf-admin-alert.error   { background: var(--bf-red-bg); color: #7f1d1d; border-color: #fca5a5; }
.bf-admin-alert.info    { background: var(--bf-blue-bg); color: #1e3a8a; border-color: #bfdbfe; }

/* ── Timeline ───────────────────────────────────────────────────────────── */
.bf-timeline { list-style: none; margin: 0; padding: 0; }
.bf-timeline-item {
  display: flex;
  gap: .75rem;
  padding: .55rem .9rem;
  border-bottom: 1px solid var(--bf-border-lt);
  font-size: .8rem;
}
.bf-timeline-item:last-child { border-bottom: none; }
.bf-timeline-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bf-border);
  flex-shrink: 0;
  margin-top: .3rem;
}
.bf-timeline-dot.ok     { background: var(--bf-green); }
.bf-timeline-dot.error  { background: var(--bf-red); }
.bf-timeline-dot.info   { background: var(--bf-blue); }
.bf-timeline-dot.warn   { background: var(--bf-amber); }
.bf-timeline-time { font-size: .72rem; color: var(--bf-text-muted); white-space: nowrap; min-width: 100px; }
.bf-timeline-body { flex: 1; }
.bf-timeline-action { font-weight: 600; color: var(--bf-text); }
.bf-timeline-desc { color: var(--bf-text-muted); margin-top: .1rem; }

/* ── Empty state ────────────────────────────────────────────────────────── */
.bf-empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--bf-text-muted);
}
.bf-empty-state i { font-size: 2rem; display: block; margin-bottom: .5rem; opacity: .35; }
.bf-empty-state p { font-size: .82rem; margin: 0; }

/* ── System status items ─────────────────────────────────────────────────── */
.bf-system-status { border: 1px solid var(--bf-border); border-radius: 4px; overflow: hidden; margin-bottom: .75rem; }
.bf-system-row {
  display: flex; align-items: center;
  padding: .45rem .8rem;
  border-bottom: 1px solid var(--bf-border-lt);
  font-size: .8rem;
}
.bf-system-row:last-child { border-bottom: none; }
.bf-system-row:nth-child(even) { background: var(--bf-gray-bg); }
.bf-system-key { width: 180px; color: var(--bf-text-muted); flex-shrink: 0; font-size: .75rem; font-weight: 600; }
.bf-system-val { flex: 1; color: var(--bf-text); }
.bf-system-status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-left: .5rem; }
.bf-system-status-dot.ok { background: var(--bf-green); }
.bf-system-status-dot.warn { background: var(--bf-amber); }
.bf-system-status-dot.error { background: var(--bf-red); }

/* ── Command panel ──────────────────────────────────────────────────────── */
.bf-command-panel {
  background: var(--bf-surface);
  border: 1px solid var(--bf-border);
  border-radius: 4px;
  padding: .75rem .9rem;
  margin-bottom: .75rem;
}
.bf-command-grid { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ── Form helpers ───────────────────────────────────────────────────────── */
.bf-form-section { margin-bottom: 1.25rem; }
.bf-form-label { font-size: .78rem; font-weight: 600; color: var(--bf-text); margin-bottom: .3rem; display: block; }
.bf-form-hint { font-size: .72rem; color: var(--bf-text-muted); margin-top: .2rem; }
.bf-form-group { margin-bottom: .8rem; }

/* ── Queue panels ───────────────────────────────────────────────────────── */
.bf-queue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem; }
.bf-queue-panel { background: var(--bf-surface); border: 1px solid var(--bf-border); border-radius: 5px; overflow: hidden; }
.bf-queue-panel-header {
  background: var(--bf-navy);
  color: #c8d8e8;
  padding: .5rem .8rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: .4rem;
}
.bf-queue-rows { }
.bf-queue-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .35rem .8rem;
  border-bottom: 1px solid var(--bf-border-lt);
  font-size: .8rem;
}
.bf-queue-row:last-child { border-bottom: none; }
.bf-queue-label { color: var(--bf-text-muted); }
.bf-queue-count { font-weight: 700; font-variant-numeric: tabular-nums; }
.bf-queue-count.zero { color: var(--bf-text-muted); font-weight: 400; }
.bf-queue-count.warn { color: var(--bf-amber); }
.bf-queue-count.error { color: var(--bf-red); }
.bf-queue-count.ok { color: var(--bf-green); }
.bf-queue-footer {
  padding: .4rem .8rem;
  background: var(--bf-gray-bg);
  border-top: 1px solid var(--bf-border-lt);
  display: flex; gap: .4rem;
  flex-wrap: wrap;
}

/* ── Muted label ─────────────────────────────────────────────────────────── */
.bf-muted-label { font-size: .72rem; color: var(--bf-text-muted); }
.bf-label-sm { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--bf-text-muted); }

/* ── Detail ficha ────────────────────────────────────────────────────────── */
.bf-ficha-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: .9rem; margin-bottom: 1rem; }
.bf-ficha-row { display: flex; padding: .3rem 0; font-size: .82rem; border-bottom: 1px solid var(--bf-border-lt); }
.bf-ficha-row:last-child { border-bottom: none; }
.bf-ficha-key { width: 130px; flex-shrink: 0; color: var(--bf-text-muted); font-size: .75rem; }
.bf-ficha-val { flex: 1; color: var(--bf-text); font-weight: 500; }

/* ── Login page ─────────────────────────────────────────────────────────── */
.bf-login-shell {
  min-height: 100vh;
  background: var(--bf-body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bf-login-panel {
  width: 360px;
  background: var(--bf-surface);
  border: 1px solid var(--bf-border);
  border-radius: 5px;
  overflow: hidden;
}
.bf-login-header {
  background: var(--bf-navy);
  padding: 1.25rem 1.5rem 1rem;
  color: #fff;
}
.bf-login-brand { font-size: .95rem; font-weight: 700; color: #fff; }
.bf-login-brand-sub { font-size: .7rem; color: var(--bf-sidebar-hdr); margin-top: 2px; text-transform: uppercase; letter-spacing: .07em; }
.bf-login-body { padding: 1.5rem; }
.bf-login-footer { padding: .75rem 1.5rem; background: var(--bf-gray-bg); border-top: 1px solid var(--bf-border); font-size: .72rem; color: var(--bf-text-muted); }

/* ── Pagination ─────────────────────────────────────────────────────────── */
.bf-pagination { display: flex; gap: .25rem; margin-top: .75rem; }
.bf-page-link {
  padding: .25rem .55rem;
  border: 1px solid var(--bf-border);
  border-radius: 3px;
  font-size: .78rem;
  color: var(--bf-text);
  background: var(--bf-surface);
}
.bf-page-link:hover { background: var(--bf-gray-bg); text-decoration: none; }
.bf-page-link.active { background: var(--bf-navy); color: #fff; border-color: var(--bf-navy); }

/* ── Alerts from TempData ────────────────────────────────────────────────── */
.bf-flash { margin-bottom: .75rem; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bf-sidebar { width: 48px; }
  .bf-sidebar-brand-name,
  .bf-sidebar-brand-sub,
  .bf-sidebar-section,
  .bf-sidebar-link span,
  .bf-sidebar-footer { display: none; }
  .bf-sidebar-link { justify-content: center; padding: .5rem; border-left: none; border-bottom: 2px solid transparent; }
  .bf-sidebar-link.active { border-left: none; border-bottom-color: var(--bf-sidebar-act); }
  .bf-main { margin-left: 48px; }
}
@media (max-width: 600px) {
  .bf-content { padding: .9rem; }
  .bf-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-status-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Dashboard KPI charts ────────────────────────────────────────────────── */
.bf-chart-label { font-size:.75rem; font-weight:600; color:var(--bf-text-muted); text-transform:uppercase; letter-spacing:.03em; }

/* Vertical bar chart (daily volumes) */
.bf-bar-chart { display:flex; align-items:flex-end; gap:6px; height:140px; padding:0 4px; }
.bf-bar-item { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; height:100%; }
.bf-bar-value { font-size:.7rem; font-weight:600; color:var(--bf-text-muted); margin-bottom:3px; }
.bf-bar { width:100%; max-width:40px; background:var(--bf-blue); border-radius:3px 3px 0 0; min-height:2px; }
.bf-bar-day { font-size:.65rem; color:var(--bf-text-muted); margin-top:4px; text-align:center; white-space:nowrap; }

/* Acceptance rate ring */
.bf-kpi-ring { text-align:center; padding:16px 0; }
.bf-kpi-ring-value { font-size:2rem; font-weight:700; color:var(--bf-blue); }
.bf-kpi-ring-label { font-size:.72rem; color:var(--bf-text-muted); margin-top:2px; }
.bf-kpi-legend { display:flex; gap:12px; flex-wrap:wrap; }
.bf-kpi-legend-item { font-size:.72rem; display:flex; align-items:center; gap:4px; color:var(--bf-text-muted); }
.bf-kpi-dot { width:8px; height:8px; border-radius:50%; display:inline-block; }
.bf-kpi-dot.ok { background:var(--bf-green); }
.bf-kpi-dot.error { background:var(--bf-red); }
.bf-kpi-dot.muted { background:var(--bf-gray); }

/* Horizontal bar chart (volume by type) */
.bf-type-bars { display:flex; flex-direction:column; gap:6px; }
.bf-type-bar-row { display:flex; align-items:center; gap:8px; }
.bf-type-bar-label { width:140px; font-size:.72rem; color:var(--bf-text-muted); text-align:right; flex-shrink:0; }
.bf-type-bar-track { flex:1; height:16px; background:var(--bf-gray-bg); border-radius:3px; overflow:hidden; }
.bf-type-bar-fill { height:100%; background:var(--bf-blue); border-radius:3px; min-width:2px; }
.bf-type-bar-count { width:36px; font-size:.72rem; font-weight:600; text-align:right; flex-shrink:0; }

/* ── Bootstrap overrides (minimal) ──────────────────────────────────────── */
.form-control, .form-select { font-size: .82rem; }
.form-control:focus, .form-select:focus { border-color: var(--bf-blue); box-shadow: 0 0 0 2px rgba(29,78,216,.12); }
.btn-xs { padding: .15rem .45rem; font-size: .72rem; line-height: 1.4; }
