/* ============================================================
   WORKZONE — UI MOCKUPS  (professional, screenshot-free product UI)
   Rendered as light "product windows" that glow on the dark theme.
   ============================================================ */
.mock {
  /* keep product UI light regardless of the dark site theme */
  --bg-soft: #f6f8fc;
  --bg-tint: #eef3fd;
  --line: #e7ebf3;
  --ink: #0d1428;
  --ink-soft: #33405c;
  --muted: #7a86a0;
  --shadow-sm: 0 1px 2px rgba(15, 37, 87, .05), 0 2px 8px rgba(15, 37, 87, .05);
  --shadow-md: 0 12px 30px -14px rgba(15, 37, 87, .22);
  font-family: var(--font-sans); background: #fff; width: 100%; color: var(--ink);
}
.mock, .mock * { box-sizing: border-box; }

/* ============================================================
   DASHBOARD
   ============================================================ */
.mock-dash { display: flex; background: var(--bg-soft); min-height: 0; font-size: 12px; }
/* --- sidebar --- */
.mk-side { width: 110px; flex: 0 0 auto; background: #fff; border-right: 1px solid var(--line); padding: 11px 8px; display: flex; flex-direction: column; gap: 1px; }
.mk-side .mk-logo { height: 20px; margin: 2px 3px 11px; background: url('../img/logo-horizontal.svg') left center / contain no-repeat; }
.mk-mi { display: flex; align-items: center; gap: 7px; padding: 6px 8px; border-radius: 7px; font-size: .56rem; color: #5a6884; font-weight: 600; white-space: nowrap; overflow: hidden; }
.mk-mi::before { content: ""; width: 12px; height: 12px; border-radius: 3px; background: currentColor; opacity: .5; flex: 0 0 auto; }
.mk-mi.on { background: #e9f0fd; color: #16307a; }
.mk-mi.on::before { opacity: 1; background: #2563eb; }
/* --- main grid --- */
.mk-main { flex: 1; min-width: 0; padding: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; align-content: start; }
.mk-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px; box-shadow: var(--shadow-sm); min-width: 0; }
.mk-card.span2 { grid-column: span 2; }
.mk-card h6 { font-family: var(--font-head); font-size: .62rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 9px; display: flex; align-items: center; gap: 6px; }
.mk-card h6::before { content: ""; width: 11px; height: 11px; border-radius: 3px; background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); flex: 0 0 auto; }
/* --- legend chip row --- */
.mk-lgr { display: flex; flex-wrap: wrap; gap: 5px 10px; margin-bottom: 9px; }
.mk-lgr .lg { display: inline-flex; align-items: center; gap: 5px; font-size: .54rem; color: var(--ink-soft); font-weight: 600; }
.mk-lgr .lg::before { content: ""; width: 9px; height: 9px; border-radius: 2px; background: var(--c, var(--blue-600)); }
/* --- combo chart: grouped bars + profit line --- */
.mk-plot { position: relative; }
.mk-combo { position: relative; height: 110px; border-bottom: 1.5px solid #e2e7f0;
  background-image: repeating-linear-gradient(0deg, transparent 0 26px, rgba(15, 37, 87, .06) 26px 27px); }
.mk-cbars { position: absolute; inset: 0; display: flex; align-items: flex-end; gap: 7px; padding: 0 3px; }
.mk-cbars .grp { flex: 1; display: flex; align-items: flex-end; justify-content: center; gap: 2px; height: 100%; }
.mk-cbars .grp i { width: 6px; border-radius: 3px 3px 0 0; display: block; min-height: 4px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); }
.mk-cbars .grp .b1 { background: linear-gradient(180deg, #6690f2, #2f5fd0); }
.mk-cbars .grp .b2 { background: linear-gradient(180deg, #7fd39a, #34a866); }
.mk-cline { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.mk-cline path { fill: none; stroke: #f59e0b; stroke-width: 2.2; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; }
/* --- pie charts --- */
.mk-pie-wrap { display: flex; align-items: center; gap: 11px; }
.mk-pie { position: relative; width: 82px; height: 82px; flex: 0 0 auto; border-radius: 50%; box-shadow: 0 6px 16px -8px rgba(15, 37, 87, .32);
  background: conic-gradient(#3b82f6 0 12%, #34d399 12% 20%, #fbbf24 20% 55%, #ef6b6b 55% 62%, #56b4e9 62% 100%); }
.mk-pie.p2 { background: conic-gradient(#2563eb 0 30%, #34d399 30% 48%, #fbbf24 48% 66%, #ef6b6b 66% 82%, #56b4e9 82% 100%); }
.mk-legend { display: grid; gap: 5px; }
.mk-legend span { display: flex; align-items: center; gap: 6px; font-size: .54rem; color: var(--ink-soft); }
.mk-legend span::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--dot, var(--blue-600)); }
/* --- branch profit table --- */
.mk-tbl { display: grid; }
.mk-tbl .tr { display: grid; grid-template-columns: 1fr 72px 72px; gap: 6px; padding: 6px 2px; border-bottom: 1px solid var(--line); font-size: .58rem; align-items: center; }
.mk-tbl .tr .nm { font-weight: 700; color: var(--ink-soft); }
.mk-tbl .tr span:nth-child(n+2) { text-align: right; font-family: var(--font-head); font-weight: 700; color: #0d1b3e; }
.mk-tbl .th { color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; border-bottom: 1.5px solid #e2e7f0; }
.mk-tbl .th span, .mk-tbl .th .nm { color: var(--muted) !important; font-family: var(--font-sans) !important; }
.mk-tbl .tr.tot { border-bottom: none; font-weight: 800; }
.mk-tbl .tr.tot .nm, .mk-tbl .tr.tot span { color: #16307a; }
/* --- month axis --- */
.mk-xaxis { display: flex; gap: 7px; margin-top: 6px; padding: 0 3px; }
.mk-xaxis span { flex: 1; text-align: center; font-size: .48rem; color: var(--muted); font-weight: 600; }

/* ============================================================
   TABLE / REGISTRY
   ============================================================ */
.mock-table { display: grid; grid-template-columns: 178px 1fr; min-height: 340px; background: #fff; }
.mt-side { background: linear-gradient(180deg, #f7f9fd, #eef2fa); border-right: 1px solid var(--line); padding: 15px 12px; display: grid; gap: 3px; align-content: start; }
.mt-side-h { font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; font-weight: 700; padding-left: 6px; }
.mt-li { font-size: .78rem; color: var(--ink-soft); padding: 9px 11px; border-radius: 9px; display: flex; align-items: center; gap: 8px; }
.mt-li::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: #c2cee3; }
.mt-li.active { background: #fff; color: #16307a; font-weight: 700; box-shadow: var(--shadow-sm); }
.mt-li.active::before { background: var(--orange-500); box-shadow: 0 0 8px var(--orange-400); }
.mt-main { padding: 15px 17px; display: flex; flex-direction: column; }
.mt-toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.mt-pill { background: linear-gradient(180deg, #22c55e, #16a34a); color: #fff; font-size: .72rem; font-weight: 700; padding: 7px 13px; border-radius: 9px; box-shadow: 0 6px 14px -8px rgba(22, 163, 74, .8); }
.mt-search { flex: 1; height: 28px; max-width: 210px; border: 1px solid var(--line); border-radius: 9px; background: #f6f8fc 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='%237a86a0' stroke-width='2.4'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4-4'/%3E%3C/svg%3E") 9px center no-repeat; }
.mt-head, .mt-r { display: grid; grid-template-columns: 52px 1fr 88px; gap: 12px; align-items: center; }
.mt-head { font-size: .6rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; padding: 0 0 9px; border-bottom: 1.5px solid #e2e7f0; }
.mt-head span:first-child::after { content: " \2195"; opacity: .5; }
.mt-r { padding: 11px 0; border-bottom: 1px solid var(--line); transition: background .2s; }
.mt-r:hover { background: #f7faff; }
.mt-thumb { width: 50px; height: 34px; border-radius: 7px; background: linear-gradient(135deg, #dbe6fb, #c3d6f7); position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(15, 37, 87, .05); }
.mt-thumb::before { content: ""; position: absolute; left: 9px; bottom: 7px; width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, .8); }
.mt-thumb::after { content: ""; position: absolute; right: -4px; bottom: -4px; width: 24px; height: 18px; background: rgba(37, 99, 235, .25); transform: rotate(20deg); }
.mt-lines { display: grid; gap: 6px; }
.mt-lines b { height: 8px; width: 72%; border-radius: 4px; background: #c8d3e6; display: block; }
.mt-lines i { height: 7px; width: 46%; border-radius: 4px; background: #e2e8f2; display: block; }
.mt-chip { justify-self: start; font-size: .64rem; font-weight: 700; padding: 5px 11px; border-radius: 20px; background: #e7f7ee; color: #16a34a; display: inline-flex; align-items: center; gap: 5px; }
.mt-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.mt-chip.warn { background: #fef2e2; color: #d97706; }
.mt-main::after { content: "Нийт: 80  •  1  2  3  ›"; margin-top: auto; padding-top: 12px; font-size: .64rem; color: var(--muted); letter-spacing: .04em; }

/* ============================================================
   FORM
   ============================================================ */
.mock-form { padding: 20px 22px; background: #fff; }
.mf-title { font-family: var(--font-head); font-size: .82rem; color: #16307a; margin-bottom: 16px; padding-bottom: 11px; border-bottom: 1.5px solid #e2e7f0; display: flex; align-items: center; gap: 8px; }
.mf-title::before { content: ""; width: 4px; height: 15px; border-radius: 3px; background: var(--orange-500); }
.mf-photo { border: 1.5px dashed #c6d2e8; border-radius: 11px; background: #f6f9fe; height: 62px; margin-bottom: 15px; display: grid; place-items: center; color: var(--muted); font-size: .68rem; font-weight: 600; }
.mf-photo::before { content: "\1F4F7  Зураг оруулах"; }
.mf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px 12px; }
.mf-field { display: grid; gap: 6px; }
.mf-field.col2 { grid-column: span 2; }
.mf-lbl { font-size: .68rem; color: var(--ink-soft); font-weight: 600; }
.mf-lbl.req::after { content: " *"; color: #dc2626; }
.mf-inp { height: 35px; border: 1px solid var(--line); border-radius: 9px; background: #f6f8fc; position: relative; }
.mf-inp.sel::after { content: "\2304"; position: absolute; right: 11px; top: 2px; color: var(--muted); font-size: .82rem; }
.mf-inp.filled { background: #fff; border-color: #b9ccf6; box-shadow: 0 0 0 3px rgba(59, 130, 246, .13); }
.mf-inp.filled::before { content: ""; position: absolute; left: 11px; top: 13px; width: 46%; height: 8px; border-radius: 4px; background: #c8d3e6; }
.mf-actions { display: flex; gap: 10px; margin-top: 22px; }
.mf-btn { font-size: .74rem; font-weight: 700; padding: 10px 20px; border-radius: 9px; background: linear-gradient(180deg, var(--blue-500), var(--blue-600)); color: #fff; box-shadow: 0 8px 18px -10px rgba(37, 99, 235, .8); }
.mf-btn.ghost { background: #fff; color: var(--ink-soft); border: 1px solid var(--line); box-shadow: none; }

/* ============================================================
   MAP / GEO-FENCE  (admin, browser window)
   ============================================================ */
.mock-map { position: relative; min-height: 350px; overflow: hidden;
  background:
    radial-gradient(120px 120px at 74% 30%, rgba(120, 200, 140, .35), transparent 70%),
    radial-gradient(160px 120px at 20% 74%, rgba(120, 200, 140, .3), transparent 70%),
    linear-gradient(135deg, #eaf1ea, #e3ebf4); }
/* roads */
.mock-map::before { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 27%, #fff 27% 30%, transparent 30%),
    linear-gradient(90deg, transparent 62%, #fff 62% 64%, transparent 64%),
    linear-gradient(0deg, transparent 44%, #fff 44% 47%, transparent 47%),
    linear-gradient(0deg, transparent 78%, #fff 78% 80%, transparent 80%);
  opacity: .9; }
.mock-map::after { content: ""; position: absolute; top: -20%; left: -10%; width: 140%; height: 14px; background: #ffe6b8; transform: rotate(-19deg); box-shadow: 0 190px 0 #ffe6b8; }
.mm-fence { position: absolute; top: 24%; left: 30%; width: 44%; height: 42%; z-index: 2;
  background: rgba(37, 99, 235, .18); border: 2px solid var(--blue-600); border-radius: 4px;
  clip-path: polygon(18% 0, 100% 16%, 90% 100%, 6% 84%); box-shadow: 0 0 0 100vmax rgba(15, 37, 87, .04); }
.mm-fence::after { content: "Оффис — 200м"; position: absolute; top: 8px; left: 14px; font-size: .58rem; font-weight: 700; color: #16307a; background: rgba(255, 255, 255, .85); padding: 2px 7px; border-radius: 6px; }
.mm-pin { position: absolute; top: 43%; left: 47%; width: 24px; height: 24px; border-radius: 50% 50% 50% 0; background: var(--navy-700); transform: rotate(-45deg); box-shadow: 0 8px 16px rgba(15, 37, 87, .45); z-index: 4; }
.mm-pin::after { content: ""; position: absolute; inset: 7px; background: #fff; border-radius: 50%; }
.mm-zoom { position: absolute; top: 14px; left: 14px; display: grid; gap: 1px; border-radius: 9px; overflow: hidden; box-shadow: var(--shadow-md); z-index: 5; }
.mm-zoom span { width: 30px; height: 30px; display: grid; place-items: center; background: #fff; font-weight: 700; color: var(--ink-soft); }
.mm-scale { position: absolute; bottom: 14px; left: 14px; font-size: .6rem; color: var(--ink-soft); background: rgba(255, 255, 255, .85); padding: 3px 8px; border-radius: 6px; z-index: 5; box-shadow: var(--shadow-sm); }

/* ============================================================
   WORKTIME — ATTENDANCE / WEB DASHBOARD
   ============================================================ */
.mock-attend { background: var(--bg-soft); padding: 12px; display: grid; gap: 9px; font-size: 12px; }
.at-top { display: flex; align-items: center; justify-content: space-between; }
.at-top .att { font-family: var(--font-head); font-weight: 800; font-size: .8rem; color: #0d1b3e; display: flex; align-items: center; gap: 7px; }
.at-top .att::before { content: ""; width: 17px; height: 17px; border-radius: 6px; background: linear-gradient(135deg, #34d399, #10b981); }
.at-top .adt { font-size: .55rem; color: var(--muted); background: #fff; border: 1px solid var(--line); padding: 4px 9px; border-radius: 7px; font-weight: 600; }
.at-kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.at-kpi { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--ac, #10b981); border-radius: 10px; padding: 8px 9px; box-shadow: var(--shadow-sm); }
.at-kpi .akl { font-size: .47rem; color: var(--muted); text-transform: uppercase; letter-spacing: .02em; font-weight: 700; line-height: 1.35; }
.at-kpi .akv { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: #0d1b3e; margin-top: 4px; }
.at-kpi .akv small { font-size: .5rem; color: var(--muted); font-weight: 600; }
.at-row { display: grid; grid-template-columns: 1.75fr 1fr; gap: 9px; }
.at-card { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 11px; box-shadow: var(--shadow-sm); min-width: 0; }
.at-card h6 { font-family: var(--font-head); font-size: .6rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 8px; }
.at-chart { position: relative; height: 116px; border-bottom: 1.5px solid #e2e7f0;
  background-image: repeating-linear-gradient(0deg, transparent 0 23px, rgba(15, 37, 87, .06) 23px 24px); }
.at-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.at-dist { display: flex; align-items: flex-end; gap: 3px; height: 116px; }
.at-dist i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #5bc0c7, #2b9aa3); min-height: 3px; }
.at-lead { display: grid; gap: 9px; }
.at-lrow { display: grid; grid-template-columns: 18px 24px 1fr auto; gap: 8px; align-items: center; }
.at-lrow .rk2 { width: 18px; height: 18px; border-radius: 6px; background: #eef2fb; display: grid; place-items: center; font-weight: 800; color: #16307a; font-size: .55rem; }
.at-lrow:nth-child(1) .rk2 { background: #10b981; color: #fff; }
.at-lrow .av { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #34d399, #10b981); color: #fff; display: grid; place-items: center; font-size: .5rem; font-weight: 800; }
.at-lrow .nm2 { display: grid; gap: 4px; min-width: 0; }
.at-lrow .nm2 b { font-size: .58rem; color: #0d1b3e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.at-lrow .nm2 .bar2 { height: 5px; border-radius: 3px; background: linear-gradient(90deg, #34d399, #10b981); }
.at-lrow .pc { font-family: var(--font-head); font-weight: 800; font-size: .66rem; color: #16a34a; }

/* ============================================================
   PHONE APP
   ============================================================ */
.phone-frame .mock-app { border-radius: 27px; overflow: hidden; }
.mock-app { display: flex; flex-direction: column; background: #f2f5fb; aspect-ratio: 9 / 18.6; min-height: 0; font-size: 12px; }
.ma-status { display: flex; justify-content: space-between; align-items: center; padding: 8px 16px 4px; font-size: .62rem; font-weight: 700; color: var(--ink); }
.ma-status .dots { display: flex; gap: 3px; align-items: center; }
.ma-status .dots i { width: 4px; height: 8px; background: var(--ink); border-radius: 1px; display: block; opacity: .45; }
.ma-status .dots i:nth-child(1) { opacity: .9; }
.ma-status .dots i:nth-child(2) { opacity: .7; }
.ma-status .bat { width: 18px; height: 9px; border: 1px solid var(--ink); border-radius: 3px; position: relative; margin-left: 2px; }
.ma-status .bat::after { content: ""; position: absolute; inset: 1.5px; right: 5px; background: var(--ink); border-radius: 1px; }
.ma-head { display: flex; align-items: center; gap: 9px; padding: 5px 14px 11px; background: #fff; border-bottom: 1px solid var(--line); }
.ma-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: .8rem; box-shadow: 0 4px 10px -4px rgba(37, 99, 235, .8); }
.ma-head b { font-family: var(--font-head); font-size: .86rem; color: var(--ink); flex: 1; }
.ma-head .bell { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-tint); position: relative; }
.ma-head .bell::after { content: ""; position: absolute; top: 3px; right: 3px; width: 7px; height: 7px; border-radius: 50%; background: #ef4444; border: 1.5px solid #fff; }
.ma-tabs2 { display: flex; gap: 16px; padding: 10px 14px 0; background: #fff; font-size: .74rem; }
.ma-tabs2 span { color: var(--muted); padding-bottom: 9px; }
.ma-tabs2 span.on { color: #16307a; font-weight: 700; border-bottom: 2px solid #16307a; }
.ma-body { flex: 1; min-height: 0; padding: 11px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.ma-nav { display: flex; justify-content: space-around; padding: 9px 6px; background: #fff; border-top: 1px solid var(--line); font-size: .58rem; color: var(--muted); }
.ma-nav span { display: grid; justify-items: center; gap: 3px; }
.ma-nav span::before { content: ""; width: 15px; height: 15px; border-radius: 5px; background: currentColor; opacity: .32; }
.ma-nav span.on { color: #16307a; font-weight: 700; }
.ma-nav span.on::before { opacity: 1; }

/* clock-in / map variant */
.ma-map { flex: 1; min-height: 0; border-radius: 13px; position: relative; overflow: hidden;
  background:
    radial-gradient(70px 70px at 68% 34%, rgba(120, 200, 140, .4), transparent 70%),
    radial-gradient(90px 70px at 22% 72%, rgba(120, 200, 140, .32), transparent 70%),
    linear-gradient(135deg, #e9f1ea, #e2ebf5);
  box-shadow: inset 0 0 0 1px rgba(15, 37, 87, .05); }
.ma-map::before { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 40%, #fff 40% 44%, transparent 44%),
    linear-gradient(0deg, transparent 56%, #fff 56% 60%, transparent 60%),
    linear-gradient(58deg, transparent 48%, #ffe6b8 48% 52%, transparent 52%);
  opacity: .85; }
.ma-map .mm-pin { top: 46%; left: 46%; width: 20px; height: 20px; z-index: 3; }
.ma-map .mm-pin::before { content: ""; position: absolute; left: 50%; top: 60%; transform: translate(-50%, -50%) rotate(45deg); width: 46px; height: 46px; border-radius: 50%; background: rgba(37, 99, 235, .16); border: 1px solid rgba(37, 99, 235, .4); z-index: -1; }
.ma-loc { position: absolute; top: 46%; left: 50%; transform: translate(-50%, -230%); background: var(--navy-700); color: #fff; font-size: .64rem; font-weight: 700; padding: 6px 12px; border-radius: 20px; white-space: nowrap; box-shadow: var(--shadow-md); z-index: 4; }
.ma-loc::after { content: ""; position: absolute; left: 50%; bottom: -4px; transform: translateX(-50%) rotate(45deg); width: 8px; height: 8px; background: var(--navy-700); }
.ma-cta { background: var(--grad-brand); color: #fff; text-align: center; font-weight: 700; font-size: .74rem; padding: 12px; border-radius: 12px; box-shadow: 0 10px 20px -10px rgba(37, 99, 235, .7); }

/* task list variant */
.ma-task { background: #fff; border-radius: 12px; padding: 11px; display: flex; align-items: center; gap: 11px; box-shadow: var(--shadow-sm); }
.ma-ring { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(#16a34a var(--p, 100%), #e6ebf3 0); }
.ma-ring span { width: 31px; height: 31px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: .52rem; font-weight: 800; color: #16a34a; }
.ma-task .tl { flex: 1; display: grid; gap: 6px; }
.ma-task .tl b { height: 8px; width: 66%; border-radius: 4px; background: #c8d3e6; }
.ma-task .tl i { height: 7px; width: 42%; border-radius: 4px; background: #e2e8f2; }
.ma-badge { font-size: .56rem; font-weight: 700; padding: 4px 9px; border-radius: 14px; background: #eef2f8; color: var(--ink-soft); }

/* request list variant */
.ma-req { background: #fff; border-radius: 12px; padding: 11px; box-shadow: var(--shadow-sm); display: grid; gap: 8px; border-left: 3px solid var(--navy-700); }
.ma-req .rt { display: inline-block; justify-self: start; font-size: .62rem; font-weight: 700; color: #fff; background: linear-gradient(180deg, #2b52a8, #16307a); padding: 4px 11px; border-radius: 16px; }
.ma-req .rl { display: flex; justify-content: space-between; align-items: center; }
.ma-req .rl small { font-size: .6rem; color: var(--muted); }
.ma-st { font-size: .62rem; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.ma-st::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.ma-st.ok { color: #16a34a; }
.ma-st.wait { color: #d97706; }

/* notification variant */
.ma-note { background: #fff; border-radius: 12px; padding: 11px; display: flex; gap: 11px; align-items: center; box-shadow: var(--shadow-sm); }
.ma-note.unread { background: #eef4fe; box-shadow: inset 3px 0 0 var(--blue-500), var(--shadow-sm); }
.ma-note .nb { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px; background: linear-gradient(180deg, #2b52a8, #16307a); display: grid; place-items: center; color: #fff; font-size: .9rem; }
.ma-note .nl { flex: 1; display: grid; gap: 5px; }
.ma-note .nl b { font-size: .66rem; color: var(--ink); }
.ma-note .nl i { height: 6px; width: 82%; border-radius: 3px; background: #dbe2ec; display: block; }
.ma-note .nl small { font-size: .55rem; color: var(--muted); }

@media (max-width: 520px) {
  .mk-kpis { grid-template-columns: repeat(2, 1fr); }
  .mock-table { grid-template-columns: 130px 1fr; }
  .mf-grid { grid-template-columns: repeat(2, 1fr); }
}
