:root {
  --navy: #1a2e4e;
  --navy-dark: #0f1c30;
  --turchese: #2e9e8c;
  --turchese-dark: #237a6c;
  --accento2: #4a7a8c;
  --grigio-chiaro: #f4f6f8;
  --grigio-medio: #b9c2cc;
  --testo: #1f2a37;
  --bianco: #ffffff;
  --rosso: #c0392b;
  --verde: #1e8449;
  --ombra: 0 2px 10px rgba(26, 46, 78, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--grigio-chiaro);
  color: var(--testo);
}

a { text-decoration: none; color: inherit; }

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

.sidebar {
  width: 240px;
  background: var(--navy);
  color: var(--bianco);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; bottom: 0; left: 0;
}

.sidebar .logo-box {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.sidebar .logo-box img { max-width: 140px; }

.sidebar nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  border-left: 3px solid transparent;
  transition: all 0.15s ease;
}
.sidebar nav a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--bianco);
}
.sidebar nav a.active {
  background: rgba(46,158,140,0.15);
  border-left-color: var(--turchese);
  color: var(--bianco);
  font-weight: 600;
}

.sidebar .footer-box {
  padding: 16px 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.main-content {
  margin-left: 240px;
  flex: 1;
  padding: 28px 36px;
  width: calc(100% - 240px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.topbar h1 {
  font-size: 22px;
  color: var(--navy);
  margin: 0;
  font-weight: 700;
}

.topbar .user-box {
  font-size: 13px;
  color: var(--accento2);
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar .user-box a.logout {
  color: var(--rosso);
  font-weight: 600;
}

/* ---------- CARDS / KPI ---------- */
.kpi-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.kpi-card {
  background: var(--bianco);
  border-radius: 10px;
  box-shadow: var(--ombra);
  padding: 20px 24px;
  flex: 1;
  min-width: 200px;
  border-top: 4px solid var(--turchese);
}
.kpi-card .kpi-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.kpi-card .kpi-value.positive { color: var(--verde); }
.kpi-card .kpi-value.negative { color: var(--rosso); }
.kpi-card .kpi-label {
  font-size: 12.5px;
  color: #6b7684;
  margin-top: 4px;
}

.panel {
  background: var(--bianco);
  border-radius: 10px;
  box-shadow: var(--ombra);
  padding: 22px 26px;
  margin-bottom: 26px;
}
.panel h2 {
  font-size: 16px;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--grigio-chiaro);
  padding-bottom: 10px;
}

/* ---------- TABLES ---------- */
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
table.data-table th {
  text-align: left;
  background: var(--grigio-chiaro);
  color: var(--navy);
  padding: 10px 12px;
  font-weight: 600;
  position: sticky;
  top: 0;
}
table.data-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #eef1f4;
}
table.data-table tr:hover td { background: #f9fbfc; }
table.data-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--grigio-chiaro);
  color: var(--accento2);
}
.badge.uncategorized {
  background: #fde8e8;
  color: var(--rosso);
}
.badge.categorized {
  background: #e6f4f1;
  color: var(--turchese-dark);
}

select.cat-select, input.cat-input {
  padding: 5px 8px;
  border: 1px solid var(--grigio-medio);
  border-radius: 6px;
  font-size: 12.5px;
}

.btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 6px;
  background: var(--turchese);
  color: var(--bianco);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 13.5px;
}
.btn:hover { background: var(--turchese-dark); }
.btn.secondary {
  background: var(--bianco);
  color: var(--navy);
  border: 1px solid var(--grigio-medio);
}

/* ---------- LOGIN ---------- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.login-box {
  background: var(--bianco);
  border-radius: 14px;
  padding: 44px 40px;
  width: 380px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  text-align: center;
}
.login-box img { max-width: 160px; margin-bottom: 20px; }
.login-box h2 { color: var(--navy); margin-bottom: 6px; }
.login-box p.subtitle { color: #8a95a3; font-size: 13px; margin-bottom: 24px; }
.login-box input {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 14px;
  border-radius: 7px;
  border: 1px solid var(--grigio-medio);
  font-size: 14px;
}
.login-box .btn { width: 100%; padding: 11px; font-size: 14.5px; }
.login-box .error {
  background: #fde8e8;
  color: var(--rosso);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  margin-bottom: 14px;
}
.login-box .confidential-note {
  margin-top: 22px;
  font-size: 10.5px;
  color: #a3adb8;
  line-height: 1.4;
}

/* ---------- UPLOAD ---------- */
.upload-zone {
  border: 2px dashed var(--grigio-medio);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  color: #8a95a3;
  margin-bottom: 18px;
}

.chart-container { position: relative; height: 340px; }
.chart-container.chart-tall { height: 440px; }
.panel.panel-full { width: 100%; }

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.section-grid > .panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Allineamento box Upload Dati (3 pannelli caricamento file) */
.upload-panel form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.upload-panel .upload-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.upload-panel .btn {
  margin-top: auto;
}

/* Allineamento box Rapporti Esterni: l'header (nome + KPI + form di
   valorizzazione) ha altezza fissa uguale in tutte le card, cosi' il
   bottone "Aggiungi valorizzazione" risulta sempre alla stessa altezza.
   Il contenuto sottostante (storico/operazioni) segue naturalmente,
   lasciando eventuale spazio bianco in fondo alle card piu' corte. */
.rapporto-header {
  min-height: 230px;
}

.dot-manuale {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f1c40f;
  border: 1px solid #d4ac0d;
  flex-shrink: 0;
}

.tag-external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--grigio-chiaro);
  margin-bottom: 10px;
}
.tag-external .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--turchese);
}

/* ================= BOX SALDI ISPB (replica home banking) ================= */
.ispb-box {
  background: var(--bianco);
  border-radius: 12px;
  box-shadow: var(--ombra);
  border: 1px solid #e3e8ee;
  overflow: hidden;
  margin-bottom: 22px;
}
.ispb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid #e9edf2;
}
.ispb-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .2px;
}
.ispb-head .ispb-data {
  font-size: 11.5px;
  color: #8a95a3;
}
.ispb-conto {
  text-align: center;
  padding: 12px 0 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--turchese);
  letter-spacing: .3px;
}
.ispb-row-conto {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
  background: #f7fafc;
  padding: 18px 22px 20px;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}
.ispb-val {
  text-align: left;
}
.ispb-val .amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  white-space: nowrap;
}
.ispb-val .amount .cents {
  font-size: 17px;
  font-weight: 600;
}
.ispb-val .amount .cur {
  font-size: 16px;
  font-weight: 500;
  margin-left: 3px;
}
.ispb-val .lbl {
  font-size: 11.5px;
  color: #7c8794;
  margin-top: 4px;
}

.ispb-patrimonio {
  padding: 18px 22px 20px;
}
.ispb-patrimonio .titolo {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--turchese);
  margin-bottom: 14px;
}
.ispb-pat-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
}
.ispb-tot .amount {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.ispb-tot .amount .cents { font-size: 19px; font-weight: 600; }
.ispb-tot .amount .cur { font-size: 18px; font-weight: 500; margin-left: 3px; }
.ispb-tot .lbl { font-size: 11.5px; color: #7c8794; margin-top: 4px; }

.ispb-breakdown { display: flex; flex-direction: column; gap: 14px; }
.ispb-line { display: flex; align-items: baseline; gap: 9px; }
.ispb-line .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--turchese); flex: none;
  transform: translateY(-2px);
}
.ispb-line .v {
  font-size: 17px; font-weight: 700; color: var(--navy); white-space: nowrap;
}
.ispb-line .v .cents { font-size: 12.5px; font-weight: 600; }
.ispb-line .v .cur { font-size: 12px; font-weight: 500; margin-left: 2px; }
.ispb-line .l { font-size: 11px; color: #7c8794; }

.ispb-donut { position: relative; width: 92px; height: 92px; flex: none; }

/* ================= SEZIONE IPO ================= */
.ipo-kpi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.ipo-kpi .kpi-card { margin: 0; }

.badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 11px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2px;
}
.badge-bond { background: #e8f0fa; color: #24507f; }
.badge-az   { background: #e7f5f1; color: var(--turchese-dark); }
.badge-open { background: #eaf6ee; color: var(--verde); }
.badge-closed { background: #f0f2f5; color: #6b7684; }
.badge-warn { background: #fdf0e6; color: #b5651d; }

.data-table td.num, .data-table th.num { text-align: right; white-space: nowrap; }
.data-table tr.row-tot { background: #f4f7fa; font-weight: 700; }
.data-table tr.row-tot td { border-top: 2px solid var(--navy); }

.nota-metodo {
  background: #f7fafc;
  border-left: 3px solid var(--turchese);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 12.5px;
  line-height: 1.65;
  color: #4a5666;
  margin-top: 6px;
}
.nota-metodo code {
  background: #eaeff4;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11.5px;
}

/* ============================================================
   OVERVIEW — Box patrimonio ISPB (versione semplificata)
   ============================================================ */
.ispb-box .ispb-pat-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(240px, 1fr) 150px;
  gap: 32px;
  align-items: center;
  padding: 4px 0 2px;
}
.ispb-box .ispb-tot .amount { font-size: 2.35rem; line-height: 1.1; }
.ispb-box .ispb-breakdown .titolo {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .ispb-box .ispb-pat-grid { grid-template-columns: 1fr; gap: 20px; }
  .ispb-box .ispb-donut { max-width: 160px; }
}

/* ============================================================
   OVERVIEW — Ponte Patrimonio ISPB -> NAV consolidato
   ============================================================ */
.ponte-box { margin-bottom: 26px; }
.ponte-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.ponte-head h2 { margin: 0; }
.ponte-sub { color: #7a8794; font-size: 0.85rem; }

.ponte-flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: stretch;
  gap: 6px;
  margin-bottom: 22px;
}
.ponte-step {
  background: #f6f8fa;
  border: 1px solid #e3e9ee;
  border-radius: 10px;
  padding: 16px 18px;
  text-align: center;
}
.ponte-step-tot {
  background: var(--navy, #1a2e4e);
  border-color: var(--navy, #1a2e4e);
}
.ponte-step-tot .ps-val,
.ponte-step-tot .ps-lbl { color: #fff; }
.ponte-step-tot .ps-note { color: rgba(255,255,255,0.7); }
.ponte-step-tot .cents,
.ponte-step-tot .cur { color: rgba(255,255,255,0.85); }

.ps-val {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy, #1a2e4e);
  letter-spacing: -0.02em;
}
.ps-val .cents { font-size: 0.72em; }
.ps-val .cur { font-size: 0.72em; margin-left: 3px; }
.ps-lbl {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #33475b;
}
.ps-note { margin-top: 3px; font-size: 0.76rem; color: #8494a3; }

.ponte-op {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--teal, #2e9e8c);
}

.ponte-table { width: 100%; margin-top: 4px; }
.ponte-table td.indent { padding-left: 22px; }
.ponte-table .muted { color: #8494a3; font-size: 0.85rem; }
.ponte-table .riga-base td { background: #f2f6f9; }
.ponte-table .riga-sub td { font-size: 0.88rem; color: #4a5a6a; }
.ponte-table .riga-sep td {
  background: #fafbfc;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8494a3;
  font-weight: 600;
  padding-top: 12px;
}
.ponte-table .riga-sub-tot td {
  border-top: 1px solid #dde5eb;
  background: #f2f6f9;
}
.ponte-table .riga-tot td {
  background: var(--navy, #1a2e4e);
  color: #fff;
  border-top: 2px solid var(--teal, #2e9e8c);
  font-size: 1.02rem;
}
.ponte-table .riga-tot .cents,
.ponte-table .riga-tot .cur { color: rgba(255,255,255,0.85); }

/* Titolo sezione "Rapporti Esterni": stesso trattamento bold di Patrimonio ISPB */
.ponte-table .riga-sep-bold td {
  background: #f2f6f9;
  padding-top: 14px;
  font-size: 0.95rem;
}
.ponte-table .riga-sep-bold strong { color: var(--navy, #1a2e4e); }

/* Righe Capital Gain Pagato / Costi e Oneri Totali: evidenziate in rosso */
.ponte-table .riga-fiscale td {
  color: #c0392b;
  font-size: 0.9rem;
}
.ponte-table .riga-fiscale .muted { color: #d18b83; }
.ponte-table .riga-fiscale-tot td {
  color: #c0392b;
  font-weight: 700;
  border-top: 1px solid #f0d3d0;
  background: #fdf3f2;
}

/* NAV Consolidato Netto: sfondo verde fisso (anche in hover) */
.ponte-table tr.riga-nav-netto td,
.ponte-table tr.riga-nav-netto:hover td {
  background: var(--verde-nav, #1e8449) !important;
  color: #fff;
  border-top: 2px solid var(--teal, #2e9e8c);
  font-size: 1.02rem;
}
.ponte-table tr.riga-nav-netto .cents,
.ponte-table tr.riga-nav-netto .cur { color: rgba(255,255,255,0.85); }

/* NAV Consolidato Lordo: sfondo arancione fisso (anche in hover) */
.ponte-table tr.riga-nav-lordo td,
.ponte-table tr.riga-nav-lordo:hover td {
  background: var(--arancio-nav, #d3720f) !important;
  color: #fff;
  border-top: 2px solid #b45f0b;
  font-size: 1.02rem;
}
.ponte-table tr.riga-nav-lordo .cents,
.ponte-table tr.riga-nav-lordo .cur { color: rgba(255,255,255,0.9); }
.ponte-table tr.riga-nav-lordo .muted-light { color: rgba(255,255,255,0.75); font-size: 0.8rem; }

@media (max-width: 860px) {
  .ponte-flow { grid-template-columns: 1fr; }
  .ponte-op { padding: 2px 0; font-size: 1.3rem; }
}

/* KPI: sottotitolo esplicativo */
.kpi-sub {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  font-weight: 400;
  color: #8494a3;
  text-transform: none;
  letter-spacing: 0;
}

/* Riga evidenziata nella tassonomia costi (es. Carta di Credito) */
.data-table tr.riga-evidenziata td {
  background: #fff6e0;
  border-left: 3px solid #d3720f;
  font-weight: 700;
  color: #8a5a10;
}
.data-table tr.riga-evidenziata:hover td { background: #ffedc2; }

/* KPI card negativa: valore in rosso pur senza classe .kpi-value.negative */
.kpi-card .kpi-value.rosso { color: #c0392b; }

/* Righe cliccabili nella tabella Capital Gain (dettaglio per strumento) */
.data-table tr.riga-strumento { cursor: pointer; }
.data-table tr.riga-strumento:hover td { background: #f2f6f9; }
.data-table tr.riga-dettaglio-op { display: none; background: #fafbfc; }
.data-table tr.riga-dettaglio-op.aperta { display: table-row; }
.data-table tr.riga-dettaglio-op td { padding: 0; border-bottom: 1px solid #eef1f4; }
.data-table tr.riga-dettaglio-op .op-wrap { padding: 6px 10px 10px 28px; }
.data-table tr.riga-dettaglio-op table { margin-top: 4px; font-size: 9.5px; }
.data-table tr.riga-dettaglio-op th { background: #f4f6f8; padding: 4px 8px; }
.data-table tr.riga-dettaglio-op td.op-cell { border-bottom: 1px solid #f0f2f4; padding: 4px 8px; }
.riga-strumento .toggle-icon { display: inline-block; width: 14px; color: #8494a3; }
.riga-totale-strumenti td { border-top: 2px solid #1a2e4e; background: #f2f6f9; font-weight: 700; }
.riga-totale-generale td { border-top: 3px double #1a2e4e; background: #dbe4f0; font-weight: 800; }
.riga-gruppo-classe td { border-top: 1px solid #c7d0dc; }

/* Box di avviso per pagine con dati stimati/non ufficiali (NAV Stimato) */
.disclaimer-box {
  background: #fff8e6;
  border: 1px solid #e8c874;
  border-left: 5px solid #c98a1c;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #5a4318;
}
.kpi-card .kpi-sub {
  display: block;
  font-size: 9.5px;
  font-weight: 400;
  color: #8494a3;
  margin-top: 3px;
}

/* Titolo pagina Overview: "NAV Boreale Holding" grande e in blu logo */
.title-nav-boreale {
  color: #0c2247;
  font-size: 1.35em;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Box "NAV Consolidato Netto" nel ponte ISPB -> NAV: sfondo verde, stesso
   colore della riga NAV CONSOLIDATO NETTO in tabella */
.ponte-step.ponte-step-netto {
  background: var(--verde-nav, #1e8449) !important;
  border-color: var(--verde-nav, #1e8449);
}
.ponte-step.ponte-step-netto .ps-val,
.ponte-step.ponte-step-netto .ps-lbl { color: #fff; }
.ponte-step.ponte-step-netto .ps-note { color: rgba(255,255,255,0.75); }
.ponte-step.ponte-step-netto .cents,
.ponte-step.ponte-step-netto .cur { color: rgba(255,255,255,0.85); }

/* KPI card "NAV Consolidato Lordo": sfondo arancione, stesso colore della
   riga NAV CONSOLIDATO LORDO in tabella */
.kpi-card.kpi-nav-lordo {
  background: var(--arancio-nav, #d3720f) !important;
  border-top-color: #b45f0b;
}
.kpi-card.kpi-nav-lordo .kpi-value,
.kpi-card.kpi-nav-lordo .kpi-label {
  color: #fff !important;
}
.kpi-card.kpi-nav-lordo .kpi-sub { color: rgba(255,255,255,0.8) !important; }

/* KPI card "NAV Consolidato Netto" (report/portafoglio): sfondo verde */
.kpi-card.kpi-nav-netto {
  background: var(--verde-nav, #1e8449) !important;
  border-top-color: #145a33;
}
.kpi-card.kpi-nav-netto .kpi-value,
.kpi-card.kpi-nav-netto .kpi-label {
  color: #fff !important;
}
.kpi-card.kpi-nav-netto .kpi-sub { color: rgba(255,255,255,0.8) !important; }

/* Pagina NAV Stimato: badge fonte dato (ufficiale vs stima Yahoo Finance) */
.badge-ufficiale {
  display: inline-block;
  background: var(--verde-nav, #1e8449);
  color: #fff;
  font-size: 0.7em;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.badge-stima {
  display: inline-block;
  background: #e8eaed;
  color: #6b7684;
  font-size: 0.7em;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
}
tr.riga-ufficiale td { background: rgba(30,132,73,0.06); }

/* Pagina Posizioni: bottone aggiornamento manuale prezzi di mercato */
.btn-aggiorna-prezzi {
  background: var(--turchese, #2e9e8c);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 0.9em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-aggiorna-prezzi:hover { background: #257a6c; }
.alert-box {
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9em;
}
.alert-success {
  background: rgba(30,132,73,0.08);
  border: 1px solid rgba(30,132,73,0.3);
  color: #1e8449;
}
