/* ── Reset ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f0f4f6;
}

/* ── Login page ── */
body.login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.login-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  width: 340px;
  border: 0.5px solid #e2e8f0;
  text-align: center;
}
.anchor { font-size: 36px; margin-bottom: 12px; }
h1 { font-size: 22px; font-weight: 500; color: #1a5f7a; margin-bottom: 6px; }
.subtitle { font-size: 14px; color: #94a3b8; margin-bottom: 32px; }
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.owner-btn {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 12px;
  cursor: pointer;
  background: white;
  transition: all 0.15s;
}
.owner-btn:hover {
  border-color: #1a5f7a;
  background: #f0f9ff;
}
.owner-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a5f7a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  margin: 0 auto 10px;
}
.owner-name { font-size: 13px; font-weight: 500; color: #1e293b; }
.owner-role { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.cleaner-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 12px; color: #cbd5e1; font-size: 12px;
}
.cleaner-divider::before, .cleaner-divider::after {
  content: ''; flex: 1; height: 0.5px; background: #e2e8f0;
}
.cleaner-btn {
  width: 100%; border: 1.5px dashed #cbd5e1; border-radius: 12px;
  padding: 14px 12px; cursor: pointer; background: white;
  transition: all 0.15s; display: flex; align-items: center; gap: 14px;
}
.cleaner-btn:hover { border-color: #94a3b8; background: #f8fafc; }
.cleaner-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: #f1f5f9;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  flex-shrink: 0;
}
.cleaner-info { text-align: left; }
.cleaner-info .owner-name { color: #475569; }
.cleaner-info .owner-role { color: #94a3b8; }

/* ── App layout ── */
body.app {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.sidebar {
  width: 130px;
  background: #1a5f7a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 4px;
  flex-shrink: 0;
  overflow-y: auto;
}
.sidebar-logo { font-size: 28px; margin-bottom: 12px; }
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  border-radius: 8px;
  cursor: pointer;
  width: 118px;
  color: white;
  font-size: 14px;
  border: none;
  background: none;
  transition: background 0.15s;
}
.nav-item.active { background: #fde8d0; color: #1e293b; }
.nav-item:hover:not(.active) { background: rgba(255,255,255,0.1); color: white; }
.nav-icon { font-size: 30px; }
.main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.topbar {
  background: white;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid #e2e8f0;
  flex-shrink: 0;
}
.topbar-right { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #64748b; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: #1a5f7a; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
}
.content { flex: 1; overflow-y: auto; padding: 28px; }
.page { display: none; }
.page.active { display: block; }
.page-title { font-size: 28px; font-weight: 600; color: #1a5f7a; margin-bottom: 4px; }
.page-sub { font-size: 13px; color: #94a3b8; margin-bottom: 24px; }
.placeholder { background: white; border-radius: 12px; border: 0.5px solid #e2e8f0; padding: 40px; text-align: center; color: #94a3b8; font-size: 14px; }
.switch-owner-btn { background: none; border: 1px solid #e2e8f0; border-radius: 6px; padding: 4px 10px; font-size: 12px; color: #64748b; cursor: pointer; }
.switch-owner-btn:hover { background: #f0f4f6; }

/* ── Shared buttons ── */
.cal-nav-btn { background:white; border:0.5px solid #e2e8f0; border-radius:6px; padding:5px 14px; font-size:13px; cursor:pointer; color:#1e293b; }
.cal-nav-btn:hover { background:#f0f4f6; }
.orange-btn { background:#e8851a; color:white; border:none; border-radius:6px; padding:6px 14px; font-size:13px; cursor:pointer; }
.orange-btn:hover { background:#d4750f; }

/* ── Calendar ── */
.cal-hdr { text-align:center; padding:8px; font-size:11px; color:#94a3b8; font-weight:500; }
.cal-cell { border-right:0.5px solid #e2e8f0; border-bottom:0.5px solid #e2e8f0; padding:6px; min-height:100px; cursor:pointer; position:relative; }
.cal-cell:hover { background:#f8fafc; }
.cal-cell.other-month { background:#fafafa; cursor:default; }
.cal-cell.today { background:#e8edf0; }
.cal-cell.today .cal-date { color:#1e293b; width:28px; height:28px; display:flex; align-items:center; justify-content:center; }
.cal-cell.today .cal-pts { color:#64748b; }
.cal-cell.selected { background:#ffe8cc; }
.cal-date { font-size:16px; font-weight:500; color:#1e293b; margin-bottom:3px; width:28px; height:28px; display:flex; align-items:center; justify-content:center; }
.cal-chip { border-radius:4px; padding:2px 5px; font-size:10px; font-weight:500; margin-bottom:2px; }
.cal-pts { font-size:11px; color:#64748b; font-weight:500; margin-top:2px; }

/* ── Side cards ── */
.side-card { background:white; border-radius:12px; border:0.5px solid #e2e8f0; padding:16px; }
.side-card-title { font-size:12px; font-weight:600; color:#475569; margin-bottom:8px; text-transform:uppercase; letter-spacing:0.05em; }
.dot { width:8px; height:8px; border-radius:50%; display:inline-block; margin-right:6px; }
.owner-pts-row { display:flex; align-items:center; justify-content:space-between; padding:4px 0; font-size:12px; border-bottom:0.5px solid #f0f4f6; }
.owner-pts-row:last-child { border-bottom:none; }

/* ── Reports ── */
.rpt-toolbar { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.rpt-toolbar .rpt-search { flex:1; max-width:260px; }
.rpt-filters { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.rpt-type-select {
  appearance:none; -webkit-appearance:none;
  background:white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
  border:0.5px solid #e2e8f0; border-radius:6px; padding:6px 28px 6px 12px;
  font-size:13px; color:#1e293b; cursor:pointer; outline:none;
}
.rpt-type-select:focus { border-color:#1a5f7a; }
.rpt-sort-select {
  appearance:none; -webkit-appearance:none;
  background:white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
  border:0.5px solid #e2e8f0; border-radius:6px; padding:6px 28px 6px 12px;
  font-size:13px; color:#1e293b; cursor:pointer; outline:none;
}
.rpt-month-divider {
  display:flex; align-items:center; gap:16px;
  margin:24px 0 16px; font-size:15px; font-weight:500; color:#1a5f7a;
}
.rpt-month-divider::before, .rpt-month-divider::after {
  content:''; flex:1; height:0.5px; background:#e2e8f0;
}
.rpt-card {
  background:white; border-radius:12px; border:0.5px solid #e2e8f0;
  margin-bottom:16px; overflow:hidden;
}
.rpt-card-main {
  display:flex; gap:16px; align-items:flex-start; padding:20px;
}
.rpt-card-avatar {
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:600;
}
.rpt-card-body { flex:1; min-width:0; }
.rpt-card-header {
  display:flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:#1e293b; margin-bottom:6px;
}
.rpt-card-type { color:#1a5f7a; }
.rpt-card-date { color:#94a3b8; font-weight:400; }
.rpt-card-edit { background:none; border:none; cursor:pointer; color:#94a3b8; padding:0; font-size:16px; line-height:1; }
.rpt-card-edit:hover { color:#1a5f7a; }
.rpt-card-text { font-size:14px; color:#475569; line-height:1.6; }
.rpt-card-text textarea {
  width:100%; font-family:inherit; font-size:14px; color:#475569;
  border:0.5px solid #1a5f7a; border-radius:6px; padding:8px;
  resize:vertical; outline:none; line-height:1.6; min-height:80px;
}
.rpt-card-actions { display:flex; flex-direction:column; align-items:flex-end; gap:8px; flex-shrink:0; }
.rpt-card-actions .orange-btn { font-size:13px; padding:7px 14px; }
.rpt-complete-badge { font-size:13px; color:#16a34a; font-weight:500; padding:6px 14px; }
.rpt-card-replies { border-top:0.5px solid #f0f4f6; }
.rpt-reply-item {
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 20px; border-bottom:0.5px solid #f0f4f6;
  font-size:13px;
}
.rpt-reply-item:last-child { border-bottom:none; }
.rpt-reply-avatar {
  width:30px; height:30px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:600;
}
.rpt-reply-meta { font-size:12px; color:#94a3b8; margin-bottom:2px; }
.rpt-reply-body { color:#475569; line-height:1.5; }
.rpt-reply-form {
  display:flex; gap:10px; align-items:center; padding:12px 20px;
  border-top:0.5px solid #f0f4f6;
}
.rpt-reply-input {
  flex:1; font-family:inherit; font-size:13px; padding:8px 10px;
  border:0.5px solid #e2e8f0; border-radius:6px; outline:none; color:#1e293b;
}
.rpt-reply-input:focus { border-color:#1a5f7a; }

/* ── Documents ── */
.doc-section-divider {
  display:flex; align-items:center; gap:16px;
  margin:0 0 20px; font-size:15px; font-weight:600; color:#1a5f7a;
}
.doc-section-divider::after { content:''; flex:1; height:0.5px; background:#e2e8f0; }
.doc-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(220px, 1fr)); gap:14px; margin-bottom:36px; }
.doc-card {
  background:white; border-radius:12px; border:0.5px solid #e2e8f0;
  padding:20px 18px; display:flex; flex-direction:column; align-items:flex-start; gap:12px;
}
.doc-card-icon { font-size:32px; line-height:1; }
.doc-card-name { font-size:13px; font-weight:500; color:#1e293b; line-height:1.4; flex:1; }
.doc-card-open {
  font-size:12px; color:#1a5f7a; text-decoration:none; font-weight:500;
  border:0.5px solid #1a5f7a; border-radius:6px; padding:5px 12px;
}
.doc-card-open:hover { background:#f0f9ff; }

.inv-toolbar { display:flex; align-items:center; gap:10px; margin-bottom:16px; flex-wrap:wrap; }
.inv-toolbar .spacer { flex:1; }
.inv-total { font-size:13px; color:#475569; }
.inv-total strong { color:#1a5f7a; }
.inv-table-wrap { background:white; border-radius:12px; border:0.5px solid #e2e8f0; overflow:hidden; }
table.inv-table { width:100%; border-collapse:collapse; font-size:14px; }
table.inv-table thead th {
  padding:12px 16px; text-align:left; font-weight:500; color:#64748b;
  background:#f8fafc; border-bottom:0.5px solid #e2e8f0; white-space:nowrap;
}
table.inv-table tbody td { padding:12px 16px; color:#1e293b; border-bottom:0.5px solid #f0f4f6; }
table.inv-table tbody tr:last-child td { border-bottom:none; }
table.inv-table tbody tr:hover td { background:#f8fafc; }
.inv-category-badge {
  display:inline-block; padding:2px 8px; border-radius:10px;
  font-size:11px; font-weight:600; background:#e8f0f5; color:#1a5f7a;
}
.inv-view-btn { color:#1a5f7a; text-decoration:none; font-size:13px; }
.inv-view-btn:hover { text-decoration:underline; }
.inv-delete-btn { background:none; border:none; color:#cbd5e1; cursor:pointer; font-size:16px; padding:0; }
.inv-delete-btn:hover { color:#ef4444; }

/* ── Invoice modal ── */
.inv-modal-bg {
  display:none; position:fixed; inset:0; background:rgba(15,23,42,0.45);
  z-index:200; align-items:flex-start; justify-content:center; padding-top:80px;
}
.inv-modal {
  background:white; border-radius:12px; width:480px; max-width:92vw;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
}
.inv-modal-head {
  padding:16px 20px; border-bottom:0.5px solid #e2e8f0;
  display:flex; justify-content:space-between; align-items:center;
}
.inv-modal-head h2 { font-size:16px; font-weight:600; color:#1a5f7a; }
.inv-modal-body { padding:18px 20px; display:flex; flex-direction:column; gap:14px; }
.inv-modal-body label { display:block; font-size:11px; text-transform:uppercase; letter-spacing:0.05em; color:#64748b; margin-bottom:4px; font-weight:600; }
.inv-modal-body input, .inv-modal-body select, .inv-modal-body textarea {
  width:100%; font-family:inherit; font-size:13px; padding:8px 10px;
  border:0.5px solid #e2e8f0; border-radius:6px; outline:none; background:white; color:#1e293b;
}
.inv-modal-body input:focus, .inv-modal-body select:focus, .inv-modal-body textarea:focus { border-color:#1a5f7a; }
.inv-modal-body textarea { resize:vertical; min-height:60px; }
.inv-modal-body input[type=file] { padding:6px; }
.inv-modal-foot {
  padding:14px 20px; border-top:0.5px solid #e2e8f0;
  display:flex; justify-content:flex-end; gap:10px;
}

/* ── Monthly Report ── */
.mr-back { background:none; border:none; color:#1a5f7a; font-size:13px; cursor:pointer; padding:0 0 16px; display:flex; align-items:center; gap:6px; }
.mr-back:hover { text-decoration:underline; }
.mr-toolbar { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.mr-cycle-select {
  appearance:none; -webkit-appearance:none;
  background:white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
  border:0.5px solid #e2e8f0; border-radius:8px; padding:8px 36px 8px 14px;
  font-size:13px; color:#1e293b; cursor:pointer; outline:none; min-width:240px;
}
.mr-cycle-select:focus { border-color:#1a5f7a; }
.mr-cycle-heading { font-size:16px; font-weight:600; color:#1a5f7a; margin-bottom:20px; }
.mr-section-divider {
  display:flex; align-items:center; gap:16px;
  margin:32px 0 16px; font-size:15px; font-weight:500; color:#1a5f7a;
}
.mr-section-divider::before, .mr-section-divider::after { content:''; flex:1; height:0.5px; background:#e2e8f0; }
.mr-table-wrap { background:white; border-radius:12px; border:0.5px solid #e2e8f0; overflow:hidden; margin-bottom:8px; }
table.mr-table { width:100%; border-collapse:collapse; font-size:14px; }
table.mr-table thead th {
  padding:14px 20px; text-align:left; font-weight:500; color:#64748b;
  border-bottom:0.5px solid #e2e8f0; background:white;
}
table.mr-table tbody td { padding:14px 20px; color:#1e293b; border-bottom:0.5px solid #f0f4f6; }
table.mr-table tbody tr:last-child td { border-bottom:none; }
.mr-footer { text-align:center; margin-top:40px; padding-top:20px; border-top:0.5px solid #e2e8f0; font-size:12px; color:#94a3b8; }

@media print {
  .sidebar, .topbar { display:none !important; }
  .content { padding:0 !important; overflow:visible !important; }
  .main { overflow:visible !important; }
  body.app { height:auto !important; overflow:visible !important; }
  .mr-back, .mr-toolbar button { display:none !important; }
}

/* ── New report modal ── */
.rpt-modal-bg {
  display:none; position:fixed; inset:0; background:rgba(15,23,42,0.45);
  z-index:200; align-items:flex-start; justify-content:center; padding-top:80px;
}
.rpt-modal {
  background:white; border-radius:12px; width:520px; max-width:92vw;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
}
.rpt-modal-head {
  padding:16px 20px; border-bottom:0.5px solid #e2e8f0;
  display:flex; justify-content:space-between; align-items:center;
}
.rpt-modal-head h2 { font-size:16px; font-weight:600; color:#1a5f7a; }
.rpt-modal-body { padding:18px 20px; display:flex; flex-direction:column; gap:14px; }
.rpt-modal-body label { display:block; font-size:11px; text-transform:uppercase; letter-spacing:0.05em; color:#64748b; margin-bottom:4px; font-weight:600; }
.rpt-modal-body select, .rpt-modal-body input[type=date], .rpt-modal-body textarea {
  width:100%; font-family:inherit; font-size:13px; padding:8px 10px;
  border:0.5px solid #e2e8f0; border-radius:6px; outline:none; background:white; color:#1e293b;
}
.rpt-modal-body select:focus, .rpt-modal-body input:focus, .rpt-modal-body textarea:focus { border-color:#1a5f7a; }
.rpt-modal-body textarea { resize:vertical; min-height:100px; }
.rpt-modal-foot {
  padding:14px 20px; border-top:0.5px solid #e2e8f0;
  display:flex; justify-content:flex-end; gap:10px;
}

/* ── Log Book ── */
.lb-toolbar { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.lb-toolbar .spacer { flex:1; }
.lb-search { font-size:13px; padding:7px 10px; border:0.5px solid #e2e8f0; border-radius:6px; width:220px; outline:none; }
.lb-search:focus { border-color:#1a5f7a; }
.lb-rate { font-size:13px; color:#64748b; }
.lb-rate strong { color:#1a5f7a; }
.lb-card { background:white; border-radius:12px; border:0.5px solid #e2e8f0; overflow:hidden; }
.lb-entry {
  position:relative; background:white; border-radius:12px;
  border:0.5px solid #e2e8f0; margin-bottom:16px; overflow:hidden;
}
.lb-entry-ribbon {
  position:absolute; top:0; right:0;
  background:#1a5f7a; color:white; font-weight:600; font-size:13px;
  padding:6px 14px 6px 20px;
  clip-path:polygon(20px 0, 100% 0, 100% 100%, 0 100%);
}
.lb-entry-head {
  display:grid; grid-template-columns:1.4fr 1fr 1fr;
  gap:20px; padding:20px 24px; align-items:center;
}
.lb-entry-skipper { display:flex; align-items:center; gap:14px; }
.lb-chip-lg {
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%;
  font-size:13px; font-weight:600; letter-spacing:0.03em;
  background:white;
}
.lb-entry-who { font-size:14px; }
.lb-entry-name { color:#1e293b; font-size:15px; margin-bottom:2px; }
.lb-entry-name strong { margin-right:8px; }
.lb-entry-date { color:#64748b; font-weight:400; font-size:13px; }
.lb-entry-notes { font-size:13px; }
.lb-entry-route, .lb-entry-fuel {
  font-size:13px; color:#64748b; line-height:1.6;
}
.lb-entry-route strong, .lb-entry-fuel strong { color:#1e293b; }
.lb-entry-totals {
  display:grid; grid-template-columns:1fr 1fr;
  border-top:0.5px solid #e2e8f0;
}
.lb-entry-litres, .lb-entry-cost {
  text-align:center; padding:16px; font-variant-numeric:tabular-nums;
}
.lb-entry-litres { border-right:0.5px solid #e2e8f0; }
.lb-entry-big { font-size:20px; color:#1e293b; font-weight:500; margin-bottom:2px; }
.lb-entry-sub { font-size:12px; color:#64748b; }
table.logbook { width:100%; border-collapse:collapse; font-variant-numeric:tabular-nums; }
table.logbook thead th {
  background:#f8fafc; font-size:11px; font-weight:600; text-transform:uppercase;
  letter-spacing:0.04em; color:#64748b; text-align:left;
  padding:10px 12px; border-bottom:0.5px solid #e2e8f0; white-space:nowrap;
}
table.logbook tbody td {
  padding:9px 12px; border-bottom:0.5px solid #f0f4f6;
  font-size:13px; color:#1e293b; white-space:nowrap; vertical-align:middle;
}
table.logbook tbody tr:last-child td { border-bottom:none; }
table.logbook tbody tr:hover td { background:#f8fafc; }
.lb-num { text-align:right; font-variant-numeric:tabular-nums; }
.lb-sep { border-left:0.5px solid #e2e8f0; }
.lb-notes { white-space:normal; color:#475569; max-width:240px; font-size:12px; }
.lb-muted { color:#cbd5e1; }
.lb-added { color:#166534; font-weight:500; }
.lb-chip {
  display:inline-block; padding:2px 7px; border-radius:10px;
  font-size:11px; font-weight:600; letter-spacing:0.03em;
}

/* ── Logbook modal ── */
.lb-modal-bg {
  display:none; position:fixed; inset:0; background:rgba(15,23,42,0.45);
  z-index:200; align-items:flex-start; justify-content:center; padding-top:60px;
}
.lb-modal {
  background:white; border-radius:12px; width:560px; max-width:92vw;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
}
.lb-modal-head {
  padding:16px 20px; border-bottom:0.5px solid #e2e8f0;
  display:flex; justify-content:space-between; align-items:center;
}
.lb-modal-head h2 { font-size:16px; font-weight:600; color:#1a5f7a; }
.lb-tag {
  background:#e8f0f5; color:#1a5f7a; padding:3px 10px;
  border-radius:10px; font-size:12px; font-weight:600;
}
.lb-modal-body { padding:18px 20px; }
.lb-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px 14px; }
.lb-grid .full { grid-column:1 / -1; }
.lb-grid label {
  display:block; font-size:11px; text-transform:uppercase;
  letter-spacing:0.05em; color:#64748b; margin-bottom:4px; font-weight:600;
}
.lb-grid input, .lb-grid select, .lb-grid textarea {
  width:100%; font-family:inherit; font-size:13px; padding:8px 10px;
  border:0.5px solid #e2e8f0; border-radius:6px; outline:none; background:white;
}
.lb-grid input:focus, .lb-grid select:focus, .lb-grid textarea:focus { border-color:#1a5f7a; }
.lb-grid textarea { resize:vertical; min-height:54px; }
.lb-section {
  grid-column:1 / -1; font-size:11px; text-transform:uppercase;
  letter-spacing:0.05em; color:#94a3b8; margin-top:6px;
  padding-bottom:4px; border-bottom:0.5px solid #f0f4f6; font-weight:600;
}
.lb-calc {
  grid-column:1 / -1; background:#f8fafc; border-radius:6px;
  padding:10px 12px; font-size:12px; color:#64748b;
  display:flex; justify-content:space-between;
}
.lb-calc strong { color:#1e293b; font-variant-numeric:tabular-nums; }
.lb-modal-foot {
  padding:14px 20px; border-top:0.5px solid #e2e8f0;
  display:flex; justify-content:flex-end; gap:10px;
}
.lb-btn {
  font-size:13px; padding:7px 16px; border-radius:6px;
  border:0.5px solid #e2e8f0; background:white; cursor:pointer; color:#1e293b;
}
.lb-btn:hover { background:#f8fafc; }
