@font-face {
  font-family: "Inter";
  src: url("fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #f2f4f5;
  --surface: #ffffff;
  --ink: #16212b;
  --muted: #5b6873;
  --line: #dce1e5;
  --line-strong: #c3cbd2;
  --accent: #12676b;
  --accent-ink: #0b4a4d;
  --accent-soft: #e3f0f0;
  --warn: #8f5606;
  --warn-soft: #fbf1dd;
  --danger: #b3372f;
  --danger-soft: #fbe9e7;
  --fund: #34424f;
  --radius: 6px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}
h1, h2, h3, p { margin: 0; }
a { color: var(--accent-ink); }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- top bar ---------- */
.topbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.topbar-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: stretch; gap: 32px; min-height: 56px;
}
.brand {
  display: flex; align-items: baseline; gap: 10px; align-self: center;
  font-weight: 750; font-size: 1.12rem; color: var(--ink); text-decoration: none; letter-spacing: -.01em;
}
.brand .team { font-weight: 400; font-size: .85rem; color: var(--muted); letter-spacing: 0; }
.brand .team:not(:empty)::before { content: "|"; margin-inline-end: 10px; color: var(--line-strong); }
#nav { display: flex; gap: 2px; overflow-x: auto; }
#nav a {
  display: flex; align-items: center; padding: 0 12px;
  color: var(--muted); text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap;
}
#nav a:hover { color: var(--ink); }
#nav a.active { color: var(--ink); font-weight: 600; border-bottom-color: var(--accent); }
.save-state { margin-inline-start: auto; align-self: center; font-size: .8rem; color: var(--muted); white-space: nowrap; }
.save-state.err { color: var(--danger); font-weight: 600; }

.banner { background: var(--danger-soft); color: var(--danger); border-bottom: 1px solid #efc3be; padding: 10px 24px; text-align: center; }
.banner.viewer-banner { background: var(--accent-soft); color: var(--accent-ink); border-bottom-color: #b9d8d9; }
.banner button { margin-inline-start: 12px; }

.page { max-width: 1180px; margin: 0 auto; padding: 28px 24px 80px; }

/* ---------- generic ---------- */
.page-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px; flex-wrap: wrap; }
.page-head h1 { font-size: 1.5rem; font-weight: 750; letter-spacing: -.015em; }
.page-intro { color: var(--muted); max-width: 72ch; margin-bottom: 22px; }
.hint { color: var(--muted); font-size: .88rem; }
.empty { padding: 40px 20px; text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: var(--radius); background: var(--surface); }
.empty p { margin-bottom: 14px; }

input, select, textarea {
  padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 5px;
  background: #fff; min-width: 0; max-width: 100%;
}
input:hover, select:hover, textarea:hover { border-color: #93a0ab; }
textarea { width: 100%; min-height: 84px; resize: vertical; }
input[type="color"] { padding: 2px; width: 34px; height: 30px; cursor: pointer; }
input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--accent); }
.num { text-align: right; font-variant-numeric: tabular-nums; }
.w-xs { width: 70px; } .w-sm { width: 100px; } .w-md { width: 150px; } .w-lg { width: 210px; }

.btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  border: 1px solid var(--line-strong); border-radius: 5px; background: #fff;
  cursor: pointer; text-decoration: none; color: var(--ink); white-space: nowrap;
}
.btn:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
.btn.primary:hover { background: var(--accent-ink); color: #fff; }
.btn.danger { color: var(--danger); }
.btn.danger:hover { border-color: var(--danger); color: var(--danger); background: var(--danger-soft); }
.btn.sm { padding: 2px 10px; font-size: .85rem; }
.icon-btn {
  width: 28px; height: 28px; display: inline-grid; place-items: center; padding: 0;
  border: 1px solid transparent; border-radius: 5px; background: transparent;
  color: var(--muted); cursor: pointer; font-size: 1rem; line-height: 1;
}
.icon-btn:hover { background: var(--bg); color: var(--ink); border-color: var(--line); }
.icon-btn.del:hover { color: var(--danger); background: var(--danger-soft); border-color: #efc3be; }
.icon-btn:disabled { opacity: .3; cursor: default; }

.row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.spacer { flex: 1; }

label.f { display: grid; gap: 3px; font-size: .84rem; color: var(--muted); }
label.f > .lbl { font-weight: 500; display: flex; align-items: center; gap: 6px; }

.pill {
  display: inline-block; padding: 0 10px; border-radius: 999px; font-size: .8rem;
  background: var(--bg); color: var(--muted); border: 1px solid var(--line);
}
.pill.active { background: var(--accent-soft); color: var(--accent-ink); border-color: #b9d8d9; }
.pill.done { background: #e8ecef; color: var(--ink); }
.pill.cancelled { background: var(--danger-soft); color: var(--danger); border-color: #efc3be; }
.pill.ok { background: var(--accent-soft); color: var(--accent-ink); border-color: #b9d8d9; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex: none; }

/* ---------- avatars ---------- */
.avatar {
  border-radius: 50%; flex: none; display: inline-flex; align-items: center; justify-content: center;
  object-fit: cover; font-weight: 700; line-height: 1; vertical-align: middle;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}
.avatar-fallback { letter-spacing: -.02em; }

/* ---------- specialty tags ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 5px; padding: 2px 9px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; line-height: 1.5; white-space: nowrap;
}
.tag-sm { padding: 1px 7px; font-size: .68rem; font-weight: 600; }
.tags-inline { display: inline-flex; gap: 4px; flex-wrap: wrap; margin-inline-start: 8px; vertical-align: middle; }
.tag-x {
  border: 0; background: rgba(255, 255, 255, .001); color: inherit; opacity: .75; cursor: pointer;
  padding: 0; margin-inline-start: 1px; font-size: .95em; line-height: 1; border-radius: 50%;
}
.tag-x:hover { opacity: 1; }

/* ---------- info icon + tooltip ---------- */
.info {
  display: inline-grid; place-items: center; width: 16px; height: 16px; padding: 0; flex: none;
  border: 1px solid var(--line-strong); border-radius: 50%; background: #fff; color: var(--muted);
  font: italic 700 10.5px/1 Georgia, "Times New Roman", serif; cursor: help; vertical-align: middle;
}
.info:hover, .info:focus-visible { background: var(--accent); border-color: var(--accent); color: #fff; }
.tooltip {
  position: fixed; z-index: 100; max-width: 330px; padding: 9px 12px; border-radius: 6px;
  background: #16212b; color: #fff; font-size: .84rem; line-height: 1.5; white-space: pre-line;
  pointer-events: none; box-shadow: 0 6px 20px rgba(0, 0, 0, .18); font-weight: 400; text-align: start; letter-spacing: 0;
}

/* ---------- tables ---------- */
.tbl { width: 100%; border-collapse: collapse; background: var(--surface); }
.tbl th, .tbl td { padding: 9px 12px; text-align: start; border-bottom: 1px solid var(--line); vertical-align: middle; }
.tbl th { font-weight: 600; font-size: .84rem; color: var(--muted); background: #fafbfb; white-space: nowrap; }
.tbl th .info { margin-inline-start: 5px; }
.tbl td.n, .tbl th.n { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tbl tr.total td { font-weight: 700; border-top: 2px solid var(--line-strong); background: #fafbfb; }
.tbl tr.click { cursor: pointer; }
.tbl tr.click:hover td { background: #f7fafa; }
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.tbl-wrap .tbl tr:last-child td { border-bottom: 0; }
.muted { color: var(--muted); }
.strong { font-weight: 600; }

/* ---------- dashboard ---------- */
.figures { display: flex; flex-wrap: wrap; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: 30px; }
.figure { flex: 1 1 200px; padding: 16px 20px; border-inline-end: 1px solid var(--line); }
.figure:last-child { border-inline-end: 0; }
.figure .v { font-size: 1.45rem; font-weight: 750; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.figure .l { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.figure .u { font-size: .8rem; font-weight: 400; color: var(--muted); margin-inline-start: 5px; }
.section-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 4px; display: flex; align-items: center; gap: 8px; }
.block { margin-bottom: 34px; }
.block > .hint { margin-bottom: 12px; max-width: 80ch; }
.mini-bar { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; min-width: 80px; }
.mini-bar > i { display: block; height: 100%; background: var(--accent); }

/* ---------- project editor ---------- */
.proj-grid { display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 44px; align-items: start; }
.proj-title { width: 100%; font-size: 1.5rem; font-weight: 750; padding: 4px 8px; border-color: transparent; background: transparent; margin-inline-start: -8px; letter-spacing: -.015em; }
.proj-title:hover, .proj-title:focus { background: #fff; border-color: var(--line-strong); }
.proj-client { border-color: transparent; background: transparent; margin-inline-start: -8px; color: var(--muted); width: 100%; }
.proj-client:hover, .proj-client:focus { background: #fff; border-color: var(--line-strong); }
.proj-head { margin-bottom: 8px; }
.proj-form, .results { min-width: 0; }
.sec { padding: 24px 0 6px; border-top: 1px solid var(--line); margin-top: 18px; }
.sec:first-of-type { margin-top: 8px; }
.sec h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.sec > .hint { margin-bottom: 14px; max-width: 75ch; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.split-field { display: grid; grid-template-columns: 1fr 86px; gap: 8px; }
.money-input { display: flex; align-items: center; gap: 8px; }
.money-input input { flex: 1; font-size: 1.15rem; font-weight: 650; }
.money-input .cur { color: var(--muted); white-space: nowrap; }
.list-rows { display: grid; gap: 8px; margin-bottom: 10px; }
.list-rows .row > input:first-child { flex: 1; }

.stage { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 12px 14px; margin-bottom: 10px; }
.stage-head { display: flex; gap: 8px; align-items: center; }
.stage-head .s-name { flex: 1; font-weight: 600; }
.stage-tools { display: flex; gap: 2px; flex: none; }
.stage-calc { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.stage-calc .stage-amount { margin-inline-start: auto; }
.stage-amount { min-width: 120px; text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.3; }
.stage-amount small { display: block; font-weight: 400; color: var(--muted); font-size: .76rem; }
.assignees { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); }
.assignees .lbl { font-size: .82rem; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 2px 3px 2px 10px;
  border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; font-size: .9rem;
}
.chip .share { width: 46px; padding: 0 4px; text-align: center; border-radius: 4px; font-size: .85rem; }
.chip .amt { font-size: .8rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.chip .icon-btn { width: 22px; height: 22px; font-size: .85rem; }
.assignees select { padding: 2px 8px; font-size: .85rem; border-style: dashed; }
.stage.warn { border-color: #e2c48a; background: #fffdf8; }

.pay-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.progress { height: 8px; background: var(--line); border-radius: 4px; overflow: hidden; margin: 6px 0 10px; }
.progress > i { display: block; height: 100%; background: var(--accent); }
.approvals { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.approvals label { display: inline-flex; gap: 8px; align-items: center; padding: 5px 12px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; cursor: pointer; }
.approvals label.on { background: var(--accent-soft); border-color: #9cc9cb; }

/* ---------- calculation breakdown ---------- */
.math { width: 100%; border-collapse: collapse; font-size: .9rem; background: var(--surface); }
.math th, .math td { padding: 6px 10px; border-bottom: 1px solid var(--line); text-align: start; vertical-align: top; }
.math thead th { font-size: .78rem; color: var(--muted); font-weight: 600; background: #fafbfb; }
.math tr.group th { background: var(--accent-soft); color: var(--accent-ink); font-size: .84rem; padding: 6px 10px; }
.math td.r { text-align: right; font-weight: 650; font-variant-numeric: tabular-nums; white-space: nowrap; }
.math td.calc { color: var(--muted); font-variant-numeric: tabular-nums; }
.math tr.sub td:first-child { padding-inline-start: 26px; color: var(--muted); }
.math tr.key td { background: #f6f8f9; font-weight: 650; }
.math-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }

/* ---------- results panel ---------- */
.results { position: sticky; top: 16px; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 8px; padding: 18px 18px 14px; }
.results h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.results .total-line { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; gap: 10px; }
.results .total-line b { font-size: 1.3rem; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.splitbar { display: flex; height: 44px; border-radius: 5px; overflow: hidden; border: 1px solid var(--line-strong); background: var(--bg); }
.splitbar > div { min-width: 3px; height: 100%; }
.splitbar .costs { background: repeating-linear-gradient(135deg, #b9c2ca 0 5px, #dde2e6 5px 10px); }
.splitbar .unassigned { background: repeating-linear-gradient(135deg, #e0b565 0 5px, #f5e2b9 5px 10px); }
.legend-wrap { overflow-x: auto; }
.legend { margin-top: 12px; width: 100%; border-collapse: collapse; font-size: .9rem; }
.legend th { font-size: .78rem; font-weight: 500; color: var(--muted); text-align: right; padding: 2px 6px 6px; white-space: nowrap; }
.legend td { padding: 6px 6px; border-top: 1px solid var(--line); vertical-align: middle; }
.legend td.n { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.legend .who { display: flex; align-items: center; gap: 8px; }
.legend tr.sum td { font-weight: 700; border-top: 2px solid var(--line-strong); }
.legend .sub { display: block; font-size: .76rem; color: var(--muted); font-weight: 400; line-height: 1.35; }
.warnings { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 6px; }
.warnings li { padding: 7px 10px; border-radius: 5px; background: var(--warn-soft); color: var(--warn); font-size: .86rem; line-height: 1.5; }
.warnings li.bad { background: var(--danger-soft); color: var(--danger); }
.results .actions { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

/* ---------- members page ---------- */
.member-cards { display: grid; gap: 10px; }
.member-card {
  display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px;
}
.member-avatar-col {
  display: flex; flex-direction: column; align-items: center; gap: 6px; flex: none; width: 90px;
}
.member-avatar-col .avatar { width: 52px; height: 52px; font-size: 20px; }
.avatar-btn { padding: 2px 9px; font-size: .74rem; cursor: pointer; width: 100%; justify-content: center; }
.member-main { flex: 1; min-width: 0; display: grid; gap: 10px; }
.member-name { font-weight: 650; font-size: 1rem; flex: 1 1 160px; min-width: 120px; }
.tags-editor { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.tags-editor .lbl { font-size: .8rem; color: var(--muted); }
.tag-input { border: 1px dashed var(--line-strong); background: transparent; padding: 2px 9px; font-size: .82rem; border-radius: 999px; width: 150px; }

/* ---------- formulas page ---------- */
.formula-steps { display: grid; gap: 14px; max-width: 860px; margin-bottom: 34px; }
.fstep { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.fstep h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; display: flex; gap: 10px; align-items: baseline; }
.fstep h3 .no { color: var(--accent); font-variant-numeric: tabular-nums; }
.fstep p { color: var(--muted); font-size: .92rem; margin-top: 6px; }
.formula {
  margin-top: 8px; padding: 8px 12px; background: #f6f8f9; border-inline-start: 3px solid var(--accent); border-radius: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .86rem; line-height: 1.7; white-space: pre-wrap; overflow-x: auto;
}
.rules { max-width: 860px; margin: 0 0 34px; padding-inline-start: 20px; display: grid; gap: 8px; }
.rules li::marker { color: var(--accent); }

/* ---------- sign-in screen ---------- */
.signin-wrap { min-height: calc(100vh - 56px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.signin-card { width: 100%; max-width: 340px; text-align: center; }
.signin-card h1 { font-size: 1.6rem; font-weight: 750; letter-spacing: -.01em; margin-bottom: 6px; }
.signin-error {
  background: var(--danger-soft); color: var(--danger); border-radius: 6px; padding: 10px 14px;
  font-size: .88rem; margin-bottom: 16px; text-align: start;
}
.signin-google, .signin-admin {
  width: 100%; justify-content: center; padding: 10px 16px; font-size: .95rem; box-sizing: border-box;
}
.signin-google { gap: 10px; }
.signin-or { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .82rem; margin: 16px 0; }
.signin-or::before, .signin-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* ---------- whoami / sign out ---------- */
.whoami { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); white-space: nowrap; }
.whoami a { color: var(--muted); text-decoration: underline; }
.whoami a:hover { color: var(--ink); }

/* ---------- users page ---------- */
.user-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); flex-wrap: wrap; }
.user-row:first-child { border-top: 0; }
.user-row .avatar { width: 36px; height: 36px; font-size: 1rem; flex: none; }
.user-row .u-main { flex: 1; min-width: 200px; display: grid; gap: 2px; }
.user-row .u-email { color: var(--muted); font-size: .84rem; }
.user-row .u-meta { color: var(--muted-2, var(--muted)); font-size: .78rem; }
.user-row.blocked { opacity: .6; }
.user-row.blocked .u-email::after { content: ' (blocked)'; color: var(--danger); }

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 20; background: rgba(22, 33, 43, .4);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-panel {
  background: var(--surface); border-radius: 8px; padding: 22px 24px 20px; width: 100%; max-width: 420px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18); max-height: calc(100vh - 40px); overflow-y: auto;
}
.modal-panel h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.modal-panel .hint { margin-bottom: 16px; }
.modal-panel label.f { margin-bottom: 4px; }
.modal-panel input { width: 100%; }
@keyframes flash-highlight {
  0%, 100% { background: var(--surface); }
  30% { background: var(--accent-soft); }
}
.flash { animation: flash-highlight 1.4s ease-out; }
@media (prefers-reduced-motion: reduce) { .flash { animation: none; } }

/* ---------- toast ---------- */
.toast {
  position: fixed; inset-block-end: 20px; inset-inline-start: 20px; z-index: 10;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 6px; max-width: 360px; font-size: .9rem;
}
.print-only { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .proj-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .results { position: static; }
  .topbar-inner { gap: 16px; padding: 0 14px; flex-wrap: wrap; }
  #nav { order: 3; width: 100%; }
  .page { padding: 18px 14px 60px; }
}
@media (max-width: 560px) {
  .legend th { white-space: normal; }
  .legend td.n, .legend th { padding-inline: 3px; }
  .results { padding: 14px 12px 12px; }
  .grid2 { grid-template-columns: 1fr; }
  .member-card { flex-wrap: wrap; flex-direction: column; }
  .member-avatar-col { flex-direction: row; width: auto; }
  .member-name { min-width: 0; flex-basis: 100%; }
  .tag-input { width: 130px; }
  .figure { border-inline-end: 0; border-bottom: 1px solid var(--line); }
}
@media (prefers-reduced-motion: no-preference) {
  .btn, .icon-btn, input, select, .info { transition: border-color .12s, background-color .12s, color .12s; }
}

/* ---------- print ---------- */
@media print {
  body { background: #fff; font-size: 12px; }
  .topbar, .banner, .toast, .tooltip, .no-print, .proj-form { display: none !important; }
  .proj-grid { display: block; }
  .results { position: static; border: 0; padding: 0; }
  .results .actions { display: none; }
  .print-only { display: block; }
  .page { padding: 0; max-width: none; }
  .splitbar, .dot, .splitbar > div { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .print-only h1 { font-size: 1.4rem; margin-bottom: 4px; }
  .print-only table { width: 100%; border-collapse: collapse; margin: 10px 0 16px; }
  .print-only th, .print-only td { border-bottom: 1px solid #bbb; padding: 4px 6px; text-align: start; }
  .print-only td.n { text-align: right; }
}

.legend th .info { margin-inline-start: 4px; }
