/* ============================================================
   Verdi Faturamento — Design System
   ============================================================ */

/* --- Brand & Sidebar Constants (unchanged between themes) --- */
:root {
  --verdi-accent:        #35C96B;
  --verdi-accent-2:      #4BCD5D;
  --accent-dark:         #1FA35F;
  --btn-text:            #0e1a10;
  --sidebar-width:       248px;
  --sidebar-bg:          #0A1330;
  --sidebar-text:        rgba(255, 255, 255, 0.55);
  --sidebar-text-hover:  rgba(255, 255, 255, 0.88);
  --sidebar-text-active: #ffffff;
  --sidebar-active-bg:   rgba(53, 201, 107, 0.13);
  --sidebar-active-border: #35C96B;
  --sidebar-hover-bg:    rgba(255, 255, 255, 0.06);
  --sidebar-divider:     rgba(255, 255, 255, 0.08);
  --topbar-height:       56px;
}

/* ============================================================
   Color Palettes (per data-color-theme)
   ============================================================ */
[data-color-theme="azul"] {
  --verdi-accent:          #3b82f6;
  --verdi-accent-2:        #60a5fa;
  --accent-dark:           #1a4fa0;
  --btn-text:              #ffffff;
  --sidebar-bg:            #1a2540;
  --sidebar-active-bg:     rgba(59, 130, 246, 0.13);
  --sidebar-active-border: #3b82f6;
}

[data-color-theme="amarelo"] {
  --verdi-accent:          #eab308;
  --verdi-accent-2:        #fde047;
  --accent-dark:           #916f00;
  --btn-text:              #1a1200;
  --sidebar-bg:            #2a2410;
  --sidebar-active-bg:     rgba(234, 179, 8, 0.13);
  --sidebar-active-border: #eab308;
}

[data-color-theme="laranja"] {
  --verdi-accent:          #f97316;
  --verdi-accent-2:        #fb923c;
  --accent-dark:           #9a3d00;
  --btn-text:              #ffffff;
  --sidebar-bg:            #2a1a0f;
  --sidebar-active-bg:     rgba(249, 115, 22, 0.13);
  --sidebar-active-border: #f97316;
}

[data-color-theme="vermelho"] {
  --verdi-accent:          #ef4444;
  --verdi-accent-2:        #f87171;
  --accent-dark:           #a01010;
  --btn-text:              #ffffff;
  --sidebar-bg:            #2a1010;
  --sidebar-active-bg:     rgba(239, 68, 68, 0.13);
  --sidebar-active-border: #ef4444;
}

[data-color-theme="roxo"] {
  --verdi-accent:          #8b5cf6;
  --verdi-accent-2:        #a78bfa;
  --accent-dark:           #5020b0;
  --btn-text:              #ffffff;
  --sidebar-bg:            #1e1430;
  --sidebar-active-bg:     rgba(139, 92, 246, 0.13);
  --sidebar-active-border: #8b5cf6;
}

[data-color-theme="cinza"] {
  --verdi-accent:          #64748b;
  --verdi-accent-2:        #94a3b8;
  --accent-dark:           #374151;
  --btn-text:              #ffffff;
  --sidebar-bg:            #1e2530;
  --sidebar-active-bg:     rgba(100, 116, 139, 0.13);
  --sidebar-active-border: #64748b;
}

/* --- Light Theme (Verde) --- */
[data-theme="light"] {
  --body-bg:        #F6F8FB;
  --content-bg:     #ffffff;
  --text-primary:   #0A1330;
  --text-secondary: #5c7080;
  --border-color:   #E2E7F0;
  --card-shadow:    0 4px 16px rgba(10, 19, 48, 0.08);
  --topbar-bg:      #ffffff;
  --topbar-border:  #E2E7F0;
  --input-bg:       #ffffff;
}

/* --- Dark Theme (base — todos os temas) --- */
[data-theme="dark"] {
  --body-bg:        #0f1117;
  --content-bg:     #161b27;
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --border-color:   #1e2a3a;
  --card-shadow:    0 1px 3px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  --topbar-bg:      #161b27;
  --topbar-border:  #1e2a3a;
  --input-bg:       #1e2a3a;
  --sidebar-bg:     #0A1330;
}

/* --- Light Theme override for non-verde palettes --- */
html:not([data-color-theme="verde"])[data-theme="light"] {
  --body-bg:        #f4f6f8;
  --content-bg:     #ffffff;
  --text-primary:   #1e2533;
  --text-secondary: #64748b;
  --border-color:   #e2e8f0;
  --topbar-bg:      #ffffff;
  --topbar-border:  #e2e8f0;
  --input-bg:       #ffffff;
}

/* ============================================================
   Base Layout
   ============================================================ */
html, body {
  height: 100%;
}

body {
  background-color: var(--body-bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  --bs-font-monospace: var(--font-mono);
}

/* ============================================================
   Sidebar
   ============================================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background-color: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  z-index: 1040;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 16px;
  text-decoration: none;
  border-bottom: 1px solid var(--sidebar-divider);
  margin-bottom: 8px;
}

.sidebar-brand img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.sidebar-brand span {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.sidebar-section-label {
  padding: 8px 20px 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sidebar-text);
}

.sidebar-nav {
  flex: 1;
  padding: 4px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--sidebar-text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.sidebar-link i {
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}

.sidebar-link:hover {
  background-color: var(--sidebar-hover-bg);
  color: var(--sidebar-text-hover);
}

.sidebar-link.active {
  background-color: var(--sidebar-active-bg);
  color: var(--sidebar-text-active);
  font-weight: 600;
  position: relative;
}

.sidebar-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--sidebar-active-border);
  border-radius: 0 2px 2px 0;
}

.sidebar-footer {
  padding: 8px 10px 16px;
  border-top: 1px solid var(--sidebar-divider);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-user {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--sidebar-divider);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-user-name {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  color: var(--sidebar-text);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-name small {
  color: var(--sidebar-text);
  opacity: 0.65;
}

/* ============================================================
   Mobile Offcanvas Sidebar
   ============================================================ */
.sidebar-offcanvas {
  width: var(--sidebar-width) !important;
  background-color: var(--sidebar-bg) !important;
  border-right: none !important;
}

.sidebar-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--sidebar-divider);
  padding: 16px 20px;
}

.sidebar-offcanvas .offcanvas-header .btn-close {
  filter: invert(1) opacity(0.5);
}

.sidebar-offcanvas .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-offcanvas .sidebar-nav {
  flex: 1;
}

/* ============================================================
   Main Wrapper & Topbar
   ============================================================ */
.main-wrapper {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .main-wrapper {
    margin-left: 0;
  }
}

.topbar {
  height: var(--topbar-height);
  background-color: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.topbar-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  padding: 4px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
}

.topbar-logo img {
  height: 28px;
}

/* ============================================================
   Main Content
   ============================================================ */
.main-content {
  flex: 1;
  padding: 24px;
}

/* ============================================================
   Bootstrap Component Overrides
   ============================================================ */
.card {
  background-color: var(--content-bg);
  border-color: var(--border-color);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius-lg);
}

.card-header {
  background-color: transparent;
  border-bottom-color: var(--border-color);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.card-body {
  padding: 20px;
  font-size: 0.875rem;
}

.card-body strong,
.card-body b {
  font-weight: 600;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: var(--body-bg);
  --bs-table-hover-bg: var(--body-bg);
  --bs-table-border-color: var(--border-color);
  color: var(--text-primary);
}

.table thead th {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom-width: 1px;
}

.form-control,
.form-select {
  background-color: var(--input-bg, var(--content-bg));
  border-color: var(--border-color);
  color: var(--text-primary);
}

.form-control:focus,
.form-select:focus {
  background-color: var(--input-bg, var(--content-bg));
  border-color: var(--verdi-accent);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--verdi-accent) 25%, transparent);
}

/* ============================================================
   Brand Utilities
   ============================================================ */
.bg-verdi      { background-color: var(--verdi-accent) !important; }
.text-verdi    { color: var(--verdi-accent) !important; }
.border-verdi  { border-color: var(--verdi-accent) !important; }

.btn-verdi {
  background-color: var(--verdi-accent);
  border-color: var(--verdi-accent);
  color: var(--btn-text, #0e1a10);
  font-weight: 600;
}
.btn-verdi:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--btn-text, #0e1a10);
}

.btn-outline-verdi {
  border-color: var(--verdi-accent);
  color: var(--verdi-accent);
}
.btn-outline-verdi:hover {
  background-color: var(--verdi-accent);
  color: var(--btn-text, #0e1a10);
}

/* ============================================================
   Stat Cards
   ============================================================ */
.stat-card {
  border-top: 3px solid var(--verdi-accent);
  border-left: none;
  border-radius: var(--radius-lg);
}

.stat-card .stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.stat-card .stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--verdi-accent);
  line-height: 1.1;
}

/* ============================================================
   Status Badges
   ============================================================ */
.status-badge-rascunho  { background-color: #6c757d; }
.status-badge-emitida   { background-color: #0d6efd; }
.status-badge-paga      { background-color: var(--verdi-accent); color: #0e1a10 !important; }
.status-badge-cancelada { background-color: #ced4da; color: #495057 !important; }

/* Billing tracker — categorias derivadas */
.status-badge-a-vencer  { background-color: #0d6efd; }
.status-badge-vencida   { background-color: #dc3545; }
.status-badge-atraso    { background-color: #f59e0b; color: #1a1200 !important; }

.due-date-overdue { color: #dc3545; font-weight: 600; }

/* KPI cards — override de borda e cor do stat-card base */
.kpi-card-a-vencer { border-top-color: #0d6efd; }
.kpi-card-vencida  { border-top-color: #dc3545; }
.kpi-card-paga     { border-top-color: var(--verdi-accent); }
.kpi-card-atraso   { border-top-color: #f59e0b; }

.kpi-value-a-vencer { color: #0d6efd; }
.kpi-value-vencida  { color: #dc3545; }
.kpi-value-paga     { color: var(--verdi-accent); }
.kpi-value-atraso   { color: #f59e0b; }

/* ============================================================
   Savings Box
   ============================================================ */
.savings-box {
  background: linear-gradient(150deg, var(--verdi-accent-2), var(--verdi-accent));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
}

/* ============================================================
   Page Header
   ============================================================ */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.page-header h4,
.page-header h5 {
  margin: 0;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================================
   Misc
   ============================================================ */
.text-muted { color: var(--text-secondary) !important; }

a { color: var(--verdi-accent); }
a:hover { color: var(--accent-dark); }

/* ============================================================
   Theme Swatches (Settings Page)
   ============================================================ */
.theme-swatch-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.theme-swatch-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.theme-swatch-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.theme-swatch-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: transform 0.15s, outline-color 0.15s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.theme-swatch-radio:checked + .theme-swatch-circle {
  outline-color: var(--text-primary);
  transform: scale(1.15);
}

.theme-swatch-name {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.theme-swatch-radio:checked ~ .theme-swatch-name {
  color: var(--text-primary);
  font-weight: 700;
}

/* ============================================================
   Logo Preview (Settings Page)
   ============================================================ */
.logo-preview-box {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-preview-box img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

/* ── Central de Ajuda ── */

/* Pulsing green dot for unread onboarding */
.sidebar-link.has-badge {
  position: relative;
}
.sidebar-link.has-badge::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #28a745;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}

/* Help article cards */
.help-article-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md, 8px);
  transition: border-color .15s, box-shadow .15s, transform .1s;
  background: var(--card-bg);
  color: var(--text-primary);
}
.help-article-card:hover {
  border-color: var(--verdi-accent);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-1px);
  color: var(--text-primary);
}

/* Category icon background */
.bg-verdi-light {
  background-color: color-mix(in srgb, var(--verdi-accent) 12%, transparent);
}

/* Step number badge inside articles */
.badge.bg-verdi {
  background-color: var(--verdi-accent) !important;
}

/* Progress bar */
.progress-bar.bg-verdi {
  background-color: var(--verdi-accent) !important;
}

/* text-verdi utility */
.text-verdi {
  color: var(--verdi-accent) !important;
}

/* purple badge */
.bg-purple {
  background-color: #7c3aed !important;
  color: #fff !important;
}

/* ============================================================
   Phase 2 — Bootstrap Component Overrides (Verdi Design System)
   ============================================================ */

/* ── Buttons ── */
.btn {
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.btn-sm {
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.65rem;
  font-size: 0.8125rem;
}

.btn-lg {
  border-radius: var(--radius-md);
  padding: 0.65rem 1.4rem;
  font-size: 1rem;
}

/* Override Bootstrap primary → Verdi green */
.btn-primary {
  background-color: var(--verdi-accent);
  border-color: var(--verdi-accent);
  color: #0e1a10;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary:focus-visible {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(53, 201, 107, 0.35);
}

.btn-outline-primary {
  border-color: var(--verdi-accent);
  color: var(--verdi-accent);
}
.btn-outline-primary:hover,
.btn-outline-primary:active {
  background-color: var(--verdi-accent);
  border-color: var(--verdi-accent);
  color: #0e1a10;
}

/* btn-group — keep joined, only round outer edges */
.btn-group > .btn:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.btn-group > .btn:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.btn-group > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* ── Form Controls ── */
.form-control,
.form-select {
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.form-control-sm,
.form-select-sm {
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
}

.input-group > .form-control,
.input-group > .form-select {
  border-radius: 0;
}
.input-group > .form-control:first-child,
.input-group > .form-select:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.input-group > .form-control:last-child,
.input-group > .form-select:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.input-group > .btn:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.input-group > .btn:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.input-group-text {
  background-color: var(--body-bg);
  border-color: var(--border-color);
  color: var(--text-secondary);
  font-size: 0.875rem;
}
.input-group > .input-group-text:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.input-group > .input-group-text:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Badges ── */
.badge {
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}

/* ── Alerts ── */
.alert {
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

/* ── Modals ── */
.modal-content {
  border-radius: var(--radius-lg);
  border-color: var(--border-color);
  box-shadow: var(--shadow-lg);
}
.modal-header {
  border-bottom-color: var(--border-color);
}
.modal-footer {
  border-top-color: var(--border-color);
}

/* ── Dropdowns ── */
.dropdown-menu {
  border-radius: var(--radius-md);
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 6px;
  font-size: 0.875rem;
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.dropdown-item:hover {
  background-color: var(--body-bg);
  color: var(--text-primary);
}
.dropdown-divider {
  border-color: var(--border-color);
}

/* ── Nav Tabs ── */
.nav-tabs {
  border-bottom-color: var(--border-color);
}
.nav-tabs .nav-link {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-tabs .nav-link.active {
  color: var(--verdi-accent);
  border-color: var(--border-color) var(--border-color) #fff;
  background-color: var(--content-bg);
}
.nav-tabs .nav-link:hover:not(.active) {
  border-color: transparent;
  color: var(--text-primary);
}

/* ── Pagination ── */
.pagination .page-link {
  border-radius: var(--radius-sm) !important;
  margin: 0 2px;
  border-color: var(--border-color);
  color: var(--text-primary);
  font-size: 0.875rem;
}
.pagination .page-item.active .page-link {
  background-color: var(--verdi-accent);
  border-color: var(--verdi-accent);
  color: #0e1a10;
}
.pagination .page-link:hover {
  background-color: var(--body-bg);
  color: var(--verdi-accent);
}

/* ── Toasts / Offcanvas ── */
.toast {
  border-radius: var(--radius-md);
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
}
.offcanvas {
  border-color: var(--border-color);
}

/* ── Progress bars ── */
.progress {
  border-radius: var(--radius-pill);
  background-color: var(--border-color);
}
.progress-bar {
  border-radius: var(--radius-pill);
}

/* ── Headings ── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading, var(--text-primary));
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ── Lucide Icons — global sizing ── */
[data-lucide],
.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 1.75;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

/* Sidebar icons — 18px slot, matching previous bi sizing */
.sidebar-link [data-lucide],
.sidebar-link .lucide {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Inline icons next to text (me-1, ms-1 usage) */
.me-1[data-lucide], .ms-1[data-lucide],
.me-2[data-lucide], .ms-2[data-lucide] {
  width: 1em;
  height: 1em;
}

/* Theme toggle: show/hide sun & moon via CSS */
[data-theme="light"]  .theme-icon-dark  { display: none; }
[data-theme="dark"]   .theme-icon-light { display: none; }

/* Page header icon sizing */
.page-header [data-lucide],
.page-header .lucide {
  width: 22px;
  height: 22px;
}

/* Sortable table headers */
th[data-sort] {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
th[data-sort]:hover {
  background-color: var(--bs-table-hover-bg, rgba(0,0,0,.04));
}
th[data-sort]::after {
  content: ' ⇕';
  opacity: 0.3;
  font-size: 0.75em;
}
th[data-sort].sort-asc::after  { content: ' ▲'; opacity: 0.7; }
th[data-sort].sort-desc::after { content: ' ▼'; opacity: 0.7; }

/* Extra-small button (smaller than btn-sm) */
.btn-xs {
  padding: 1px 6px;
  font-size: 0.75rem;
  border-radius: 4px;
  line-height: 1.4;
}

