@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body { font-family: 'Inter', system-ui, sans-serif; }
.page { display: none; }
.page.active { display: block; }
.nav-btn.active { background: #102a43; color: #fff; }
input[type="number"], input[type="text"], select {
  transition: border-color .15s, box-shadow .15s;
}
input[type="number"]:focus, input[type="text"]:focus, select:focus {
  border-color: #319795; box-shadow: 0 0 0 3px rgba(49,151,149,.15); outline: none;
}
.table-scroll { max-height: 500px; overflow-y: auto; }
.table-scroll thead th { position: sticky; top: 0; z-index: 2; }
@media print {
  .no-print { display: none !important; }
  .page { display: block !important; page-break-after: always; }
  body { font-size: 11px; }
}
.fade-in { animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.kpi-card { transition: transform .15s, box-shadow .15s; }
.kpi-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.1); }
.hhr-in { width:100%; max-width:6rem; text-align:right; border:1px solid #e5e7eb; border-radius:.25rem; padding:2px 8px; font-size:.8125rem; }
.hhr-in:focus { border-color:#319795; outline:none; box-shadow:0 0 0 2px rgba(49,151,149,.15); }
.hhr-in[readonly] { background:#f9fafb; cursor:not-allowed; color:#6b7280; }
.var-in { width:6rem; text-align:right; border:1px solid #e5e7eb; border-radius:.25rem; padding:2px 8px; font-size:.8125rem; font-weight:500; }
.var-in:focus { border-color:#319795; outline:none; box-shadow:0 0 0 2px rgba(49,151,149,.15); }
.scenario-btn { opacity:.6; }
.scenario-btn.active { opacity:1; font-weight:700; box-shadow:0 0 0 2px currentColor; }
