/* ==================== VARIÁVEIS ==================== */
:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #172033;
  --muted: #667085;
  --primary: #2563eb;
  --primary2: #1d4ed8;
  --primary-light: #eef2ff;
  --border: #e4e7ec;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --success: #059669;
  --success-bg: #f0fdf4;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.06);
  --shadow: 0 4px 20px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 8px 30px rgba(16, 24, 40, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --transition: 0.2s ease;
}

/* ==================== RESET ==================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  transition: all var(--transition);
}

a {
  transition: color var(--transition);
}

/* ==================== LAYOUT ==================== */
.app {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 200px;
  background: linear-gradient(180deg, #111827 0%, #1e293b 100%);
  color: #fff;
  padding: 20px 10px;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 24px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand .brand-text span {
  color: #60a5fa;
}

.nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: transparent;
  color: #94a3b8;
  text-align: left;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  transition: all var(--transition);
}

.nav button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.nav button.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.nav button svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.nav button.active svg,
.nav button:hover svg {
  opacity: 1;
}

.main {
  margin-left: 200px;
  width: calc(100% - 200px);
  padding: 28px 32px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.top h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e293b;
}

/* ==================== BOTÕES ==================== */
.btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn:hover {
  background: var(--primary2);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.btn.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn.secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn.danger {
  background: var(--danger-bg);
  color: #b91c1c;
  border: 1px solid #fecaca;
  box-shadow: none;
}

.btn.danger:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
  transform: translateY(-1px);
}

.btn.small {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: var(--radius-xs);
}

/* ==================== CARDS (dashboard) ==================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: #d1d5db;
}

.metric {
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
  color: #1e3a5f;
  letter-spacing: -1px;
  line-height: 1.2;
}

.label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Cards coloridos do dashboard */
.card-blue { background: linear-gradient(135deg, #eff6ff 0%, #ffffff 70%); border-color: #bfdbfe; }
.card-amber { background: linear-gradient(135deg, #fffbeb 0%, #ffffff 70%); border-color: #fde68a; }
.card-violet { background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 70%); border-color: #ddd6fe; }
.card-emerald { background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 70%); border-color: #a7f3d0; }

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.card-blue .card-icon { background: #dbeafe; }
.card-amber .card-icon { background: #fef3c7; }
.card-violet .card-icon { background: #ede9fe; }
.card-emerald .card-icon { background: #d1fae5; }

/* Painéis coloridos do dashboard */
.panel-blue { background: linear-gradient(135deg, #eff6ff 0%, #ffffff 75%); border-color: #bfdbfe; }
.panel-amber { background: linear-gradient(135deg, #fffbeb 0%, #ffffff 75%); border-color: #fde68a; }
.panel-violet { background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 75%); border-color: #ddd6fe; }
.panel-emerald { background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 75%); border-color: #a7f3d0; }

/* ==================== TOASTS ==================== */
#toastContainer {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #1e293b;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  animation: toastIn 0.3s ease;
}

.toast svg { flex-shrink: 0; }

.toast-success { background: #059669; }
.toast-error { background: #dc2626; }
.toast-warning { background: #d97706; }
.toast-info { background: #2563eb; }

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  animation: toastProgress linear forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

.toast-leave {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

/* ==================== ESTADO VAZIO ==================== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.empty-state-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.empty-state-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.5;
}

.empty-state-action {
  margin-top: 12px;
}

/* ==================== PAGINAÇÃO ==================== */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 4px 4px;
  flex-wrap: wrap;
}

.page-info {
  font-size: 12px;
  color: var(--muted);
}

.page-buttons {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}

.page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}

/* ==================== MINI-RESUMO ==================== */
.mini-summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary2);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* ==================== PAINÉIS ==================== */
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  margin-bottom: 20px;
  transition: border-color var(--transition);
}

.panel:hover {
  border-color: #d1d5db;
}

.af-card .panel-head:hover {
  background: #f8fafd;
  margin: -20px -22px;
  padding: 20px 22px;
  border-radius: 12px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.panel h2 {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==================== TABELAS ==================== */
.table-wrap {
  overflow: auto;
  margin-top: 4px;
  border-radius: var(--radius-xs);
}

/* Tabelas de relatório: scroll vertical com cabeçalho fixo */
.rel-scroll {
  max-height: 520px;
  overflow-y: auto;
}

/* Ao expandir um detalhe (ex.: "consumo por ATA/AF"), o cabeçalho fixo
   (position:sticky) sobrepõe o conteúdo expandido e atrapalha a leitura.
   Nesses containers o cabeçalho rola junto com a tabela. */
.rel-scroll th {
  position: static;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th, td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 13px;
}

th {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  background: #f8fafc;
  position: sticky;
  top: 0;
  z-index: 1;
}

tr:hover td {
  background: #f8fafd;
}

tbody tr:last-child td {
  border-bottom: 0;
}

/* ==================== BADGES ==================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ok {
  background: var(--success-bg);
  color: #166534;
}

.low {
  background: var(--warning-bg);
  color: #92400e;
}

.warn {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* ==================== ALERTAS ==================== */
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--warning-bg);
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  margin: 4px 0;
  font-size: 13px;
  line-height: 1.4;
  transition: background var(--transition);
}

.alert:hover {
  background: #fef3c7;
}

.alert.success {
  background: var(--success-bg);
  border-color: #bbf7d0;
}

.alert.success:hover {
  background: #dcfce7;
}

/* ==================== FORMULÁRIOS ==================== */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  background: #fff;
  transition: all var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #cbd5e1;
}

.field input[readonly],
.field textarea[readonly] {
  background: #f8fafc;
  color: #64748b;
  cursor: default;
}

.field input[readonly]:hover,
.field textarea[readonly]:hover {
  border-color: var(--border);
}

.hint {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0;
  line-height: 1.4;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

/* ==================== CALENDÁRIO (FLATPICKR) ==================== */
.flatpickr-calendar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.15);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  padding: 6px;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.flatpickr-day.today {
  border-color: var(--primary);
}

.flatpickr-day:hover {
  background: var(--primary-light);
  border-color: transparent;
  color: var(--primary2);
}

.flatpickr-months .flatpickr-month {
  fill: var(--text);
  color: var(--text);
  font-weight: 700;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 600;
}

.flatpickr-weekday {
  color: var(--muted);
  font-weight: 600;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: var(--primary);
}

.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.flatpickr-day.inRange {
  background: var(--primary-light);
  border-color: transparent;
  color: var(--primary2);
}

/* ==================== CAMPO DE DATA ==================== */
.date-input {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") right 10px center/14px no-repeat;
  padding-right: 34px;
  font-family: inherit;
  letter-spacing: 0.5px;
}

/* ==================== MODAL ==================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hidden {
  display: none !important;
}

.modal-box {
  background: var(--card);
  border-radius: 16px;
  padding: 24px 28px;
  width: min(660px, 94vw);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.25s ease;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.modal-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close {
  font-size: 28px;
  background: transparent;
  color: var(--muted);
  padding: 0 6px;
  line-height: 1;
  border-radius: 6px;
  transition: all var(--transition);
}

.close:hover {
  color: var(--text);
  background: #f1f5f9;
}

/* ==================== ABAS (AFs) ==================== */
.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tab {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.tab.active,
.tab:hover {
  background: var(--primary);
  color: #fff;
}

/* ==================== BUSCA ==================== */
.search {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-top: 10px;
  transition: all var(--transition);
  background: #fff;
}

.search:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search:hover {
  border-color: #cbd5e1;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.filter-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  min-width: 160px;
  justify-content: space-between;
}

.filter-select:hover {
  border-color: #cbd5e1;
}

.filter-select:focus,
.filter-select.open {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-select .chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.filter-select.open .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  max-height: 280px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  z-index: 50;
  display: none;
  padding: 4px;
}

.dropdown-menu.open {
  display: block;
  animation: fadeIn 0.15s ease;
}

.dropdown-item {
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary2);
}

.dropdown-item.active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

/* ==================== GRID ==================== */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ==================== MENU MOBILE ==================== */
.mobile-menu {
  display: none;
}

/* ==================== LOADING ==================== */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* ==================== HINT / EMPTY ==================== */
.hint {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 32px !important;
  font-style: italic;
  font-size: 14px;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 1050px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .sidebar {
    display: none;
  }
  .main {
    margin: 0;
    width: 100%;
    padding: 16px;
  }
  .mobile-menu {
    display: block;
  }
  .top {
    align-items: flex-start;
  }
  .cards,
  .grid2,
  .form {
    grid-template-columns: 1fr;
  }
  .top h1 {
    font-size: 20px;
  }
  .card .metric {
    font-size: 24px;
  }
}

/* ==================== AUTENTICAÇÃO ==================== */
.top-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-user .user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-right: 4px;
  white-space: nowrap;
}

.auth-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #eef2ff 0%, #f5f7fb 40%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 34px 32px;
  width: 100%;
  max-width: 420px;
  animation: slideUp 0.25s ease;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.auth-sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px;
}

.auth-card .field {
  margin-bottom: 14px;
}

.auth-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 20px;
}

.auth-erro {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  margin: 12px 0;
}

.auth-hint {
  font-size: 12px;
  color: var(--muted);
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin: 4px 0 14px;
  line-height: 1.5;
}
