/* ============================================================
   EyeStock — self-contained CSS (ไม่พึ่ง Bootstrap/CDN)
   ออกแบบเพื่อ PageSpeed 100 + Responsive เต็มรูปแบบ
   ============================================================ */
:root{
  --primary:#0d6efd;--primary-d:#0b5ed7;--info:#0aa2c0;--teal:#0aa2c0;
  --green:#198754;--amber:#f59e0b;--red:#dc3545;--secondary:#6b7c93;
  --bg:#f4f8fc;--card:#fff;--ink:#1f2d3d;--muted:#6b7c93;
  --sidebar:#0b3d6b;--sidebar2:#0a2f54;--line:#e6eef6;
  --shadow:0 2px 12px rgba(13,71,134,.08);--radius:14px;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{margin:0;background:var(--bg);color:var(--ink);font-size:15px;line-height:1.5;
  font-family:-apple-system,BlinkMacSystemFont,"Sukhumvit Set","Leelawadee UI",
    "Noto Sans Thai","Segoe UI",Tahoma,system-ui,sans-serif}
a{text-decoration:none;color:var(--primary)}
h1,h2,h3,h4,h5{margin:0 0 .4em}
img{max-width:100%}
input,select,button,textarea{font-family:inherit}

/* ===== Layout ===== */
.layout{display:flex;min-height:100vh}
.sidebar{width:266px;background:linear-gradient(180deg,var(--sidebar),var(--sidebar2));
  color:#dce8f5;display:flex;flex-direction:column;position:fixed;top:0;bottom:0;left:0;
  z-index:1050;transition:transform .25s ease}
.sidebar-brand{display:flex;gap:12px;align-items:center;padding:20px 18px;border-bottom:1px solid rgba(255,255,255,.1)}
.sidebar-brand .bi{font-size:30px;color:#7fd3ff}
.brand-title{font-weight:700;font-size:18px;color:#fff}
.brand-sub{font-size:11px;color:#9fc0e0;line-height:1.2}
.sidebar-nav{flex:1;overflow-y:auto;padding:12px 10px;display:flex;flex-direction:column;gap:2px}
.sidebar-nav .nav-link{display:flex;align-items:center;gap:12px;color:#cfe0f2;border-radius:10px;
  padding:11px 14px;font-weight:500;transition:.15s}
.sidebar-nav .nav-link .bi{font-size:18px}
.sidebar-nav .nav-link:hover{background:rgba(255,255,255,.08);color:#fff}
.sidebar-nav .nav-link.active{background:var(--primary);color:#fff;box-shadow:0 4px 12px rgba(13,110,253,.4)}
.sidebar-user{display:flex;align-items:center;gap:10px;padding:14px;border-top:1px solid rgba(255,255,255,.1)}
.avatar{width:40px;height:40px;border-radius:50%;background:#7fd3ff;color:#0a2f54;font-weight:700;
  display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.u-name{font-size:14px;font-weight:600;color:#fff}
.u-role{font-size:11px;color:#9fc0e0}

.main{flex:1;margin-left:266px;display:flex;flex-direction:column;min-width:0}
.topbar{background:var(--card);border-bottom:1px solid var(--line);padding:16px 26px;
  display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:900}
.topbar-title{font-size:20px;font-weight:700;margin:0}
.content{padding:24px 26px;flex:1}
.footer{padding:16px 26px;color:var(--muted);font-size:13px;border-top:1px solid var(--line)}

.menu-btn{display:none;position:fixed;top:10px;left:10px;z-index:1100}
.sb-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:1040;display:none}
.sb-backdrop.show{display:block}

/* ===== Grid ===== */
.row{display:flex;flex-wrap:wrap;margin:0 -8px;row-gap:0}
.row>[class*=col-]{padding:0 8px;width:100%}
.g-3{row-gap:16px}
.col-6{width:50%}
.col-12{width:100%}
@media(min-width:992px){
  .col-lg-4{width:33.333%}.col-lg-5{width:41.666%}.col-lg-6{width:50%}
  .col-lg-7{width:58.333%}.col-lg-8{width:66.666%}.col-lg-12{width:100%}
}

/* ===== Utilities ===== */
.d-flex{display:flex}
.d-inline{display:inline}
.d-block{display:block}
.d-none{display:none}
.flex-wrap{flex-wrap:wrap}
.flex-grow-1{flex:1 1 auto}
.align-items-center{align-items:center}
.justify-content-between{justify-content:space-between}
.gap-1{gap:4px}.gap-2{gap:8px}
.ms-auto{margin-left:auto}.ms-2{margin-left:8px}.me-2{margin-right:8px}
.mt-1{margin-top:4px}.mt-2{margin-top:8px}.mt-3{margin-top:16px}.mt-5{margin-top:48px}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:4px}.mb-2{margin-bottom:8px}.mb-3{margin-bottom:16px}
.m-2{margin:8px}
.py-2{padding-top:8px;padding-bottom:8px}.py-3{padding-top:16px;padding-bottom:16px}.py-4{padding-top:24px;padding-bottom:24px}
.w-100{width:100%}.h-100{height:100%}
.position-fixed{position:fixed}
.text-end{text-align:right}.text-center{text-align:center}
.text-muted{color:var(--muted)}.text-danger{color:var(--red)}
.text-warning{color:var(--amber)}.text-success{color:var(--green)}
.fw-bold{font-weight:700}.fw-semibold{font-weight:600}
.bg-light{background:#f4f8fc}.bg-white{background:#fff}
small,.small{font-size:.82em}
@media(min-width:768px){.d-md-inline{display:inline}}
@media(min-width:992px){.d-lg-none{display:none!important}}

/* ===== Cards / stats ===== */
.card{border:none;border-radius:var(--radius);box-shadow:var(--shadow);background:var(--card);margin-bottom:0}
.card-header{border-bottom:1px solid var(--line);font-weight:600;padding:14px 18px}
.card-body{padding:16px 18px}
.stat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;margin-bottom:22px}
.stat{background:var(--card);border-radius:var(--radius);padding:18px 20px;box-shadow:var(--shadow);
  display:flex;align-items:center;gap:16px;border-left:5px solid var(--primary)}
.stat .ic{width:52px;height:52px;border-radius:13px;display:flex;align-items:center;justify-content:center;
  font-size:24px;color:#fff;background:var(--primary);flex-shrink:0}
.stat .v{font-size:26px;font-weight:700;line-height:1}
.stat .l{font-size:13px;color:var(--muted);margin-top:3px}
.stat.green{border-color:var(--green)}.stat.green .ic{background:var(--green)}
.stat.teal{border-color:var(--teal)}.stat.teal .ic{background:var(--teal)}
.stat.amber{border-color:var(--amber)}.stat.amber .ic{background:var(--amber)}
.stat.red{border-color:var(--red)}.stat.red .ic{background:var(--red)}

/* ===== Tables ===== */
.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}
.table{width:100%;border-collapse:collapse;margin:0}
.table th,.table td{padding:10px 12px;text-align:left;border-bottom:1px solid var(--line);vertical-align:middle}
.table thead th{background:#eef5fc;color:#34516e;font-weight:600;font-size:13px;
  border-bottom:2px solid var(--line);white-space:nowrap}
.table-hover tbody tr:hover{background:#f3f9ff}
.table-bordered th,.table-bordered td{border:1px solid var(--line)}
.table-sm th,.table-sm td{padding:6px 8px}
.table-light,tr.table-light>*{background:#f1f6fb}
.table-danger,tr.table-danger>*{background:#fde8ea}
.table tfoot td{border-top:2px solid var(--line)}
.align-middle{vertical-align:middle}
.toolbar{display:flex;gap:10px;flex-wrap:wrap;align-items:center;margin-bottom:16px}

/* ===== Forms ===== */
.form-label{display:block;font-weight:500;margin-bottom:4px;font-size:14px}
.form-control,.form-select{display:block;width:100%;padding:9px 12px;font-size:15px;
  border:1px solid #c9d6e5;border-radius:9px;background:#fff;color:var(--ink);transition:border-color .15s,box-shadow .15s}
.form-select{appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' fill='none' stroke='%2334516e' stroke-width='1.5'/></svg>");
  background-repeat:no-repeat;background-position:right 10px center;background-size:16px;padding-right:34px}
.form-control:focus,.form-select:focus{outline:0;border-color:var(--primary);box-shadow:0 0 0 3px rgba(13,110,253,.15)}
.form-control-sm{padding:5px 9px;font-size:13px;border-radius:7px;width:auto}
.form-text{font-size:12px;color:var(--muted)}
.form-check{display:flex;align-items:center;gap:8px}
.form-check-input{width:18px;height:18px;margin:0}
.input-group{display:flex}
.input-group .form-control{border-radius:0 9px 9px 0}
.input-group-text{display:flex;align-items:center;padding:0 12px;background:#eef5fc;
  border:1px solid #c9d6e5;border-right:0;border-radius:9px 0 0 9px;color:#34516e}

/* ===== Buttons ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;cursor:pointer;
  padding:9px 16px;font-size:14px;font-weight:600;line-height:1.2;border:1px solid transparent;
  border-radius:9px;background:#e9eef5;color:var(--ink);transition:.15s;text-decoration:none;white-space:nowrap}
.btn:hover{filter:brightness(.96)}
.btn-sm{padding:5px 10px;font-size:13px;border-radius:7px}
.btn-primary{background:var(--primary);color:#fff}.btn-primary:hover{background:var(--primary-d)}
.btn-success{background:var(--green);color:#fff}
.btn-danger{background:var(--red);color:#fff}
.btn-secondary{background:var(--secondary);color:#fff}
.btn-outline-primary{background:#fff;border-color:var(--primary);color:var(--primary)}
.btn-outline-primary:hover{background:var(--primary);color:#fff}
.btn-outline-secondary{background:#fff;border-color:#c9d6e5;color:#34516e}
.btn-outline-secondary:hover{background:#eef5fc}
.btn-outline-danger{background:#fff;border-color:var(--red);color:var(--red)}
.btn-outline-danger:hover{background:var(--red);color:#fff}
.btn-outline-success{background:#fff;border-color:var(--green);color:var(--green)}
.btn-outline-success:hover{background:var(--green);color:#fff}
.btn-outline-light{background:transparent;border-color:rgba(255,255,255,.4);color:#fff}
.btn-outline-light:hover{background:rgba(255,255,255,.15)}
.btn-close{width:28px;height:28px;padding:0;border:0;background:transparent;cursor:pointer;border-radius:6px;
  color:inherit;font-size:0}
.btn-close::before{content:"";display:inline-block;width:14px;height:14px;background:currentColor;
  -webkit-mask:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 3l10 10M13 3L3 13' stroke='black' stroke-width='1.6' stroke-linecap='round'/></svg>") no-repeat center/contain;
  mask:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 3l10 10M13 3L3 13' stroke='black' stroke-width='1.6' stroke-linecap='round'/></svg>") no-repeat center/contain}
.btn-close:hover{background:rgba(0,0,0,.06)}

/* ===== Badges ===== */
.badge{display:inline-block;padding:4px 10px;border-radius:20px;font-weight:600;font-size:12px;color:#fff;line-height:1.3}
.bg-success{background:var(--green)}.bg-warning{background:var(--amber)}
.bg-danger{background:var(--red)}.bg-secondary{background:var(--secondary)}
.bg-primary{background:var(--primary)}.bg-info{background:var(--info)}

/* ===== Alerts ===== */
.alert{padding:12px 16px;border-radius:10px;margin-bottom:16px;display:flex;align-items:center;gap:8px;border:1px solid transparent}
.alert-dismissible{justify-content:space-between}
.alert-success{background:#e3f5ec;color:#0f5132;border-color:#badbcc}
.alert-danger{background:#fde8ea;color:#842029;border-color:#f5c2c7}
.alert-warning{background:#fff3cd;color:#664d03;border-color:#ffecb5}
.alert-info{background:#e2f3f7;color:#055160;border-color:#b6e2eb}

/* ===== List group ===== */
.list-group{display:flex;flex-direction:column;border:1px solid var(--line);border-radius:10px;overflow:hidden}
.list-group-item{padding:11px 14px;border-bottom:1px solid var(--line);background:#fff;display:block}
.list-group-item:last-child{border-bottom:0}

/* ===== Modal ===== */
.modal{display:none;position:fixed;inset:0;z-index:1200;background:rgba(8,25,45,.5);overflow:auto;padding:20px}
.modal.show{display:block}
.modal-dialog{max-width:520px;margin:30px auto}
.modal-content{background:#fff;border-radius:var(--radius);box-shadow:0 20px 60px rgba(0,0,0,.3);overflow:hidden}
.modal-header{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-bottom:1px solid var(--line)}
.modal-title{font-size:17px;font-weight:700;margin:0}
.modal-body{padding:18px}
.modal-footer{display:flex;justify-content:flex-end;gap:8px;padding:14px 18px;border-top:1px solid var(--line)}
body.modal-open{overflow:hidden}

/* ===== Page heading ===== */
h2.page-h{font-size:18px;font-weight:700;margin:0 0 4px}

/* ===== ธีมแยกสี: เวชภัณฑ์ = เขียว (ยา = น้ำเงิน ค่าเริ่มต้น) ===== */
.accent-supply{--primary:#0f9d58;--primary-d:#0c7a43;--info:#13b56a;--teal:#0f9d58}
.accent-supply .topbar{box-shadow:inset 0 -3px 0 #13b56a}
.accent-supply .stat{border-left-color:#0f9d58}
.section-tag{display:inline-flex;align-items:center;gap:6px;padding:3px 12px;border-radius:20px;
  font-size:12px;font-weight:700;color:#fff;background:var(--primary)}
.tag-med{background:#0d6efd}.tag-supply{background:#0f9d58}

/* ===== Charts (SVG) ===== */
.chart-svg{width:100%;height:auto;display:block}
.legend{list-style:none;margin:10px 0 0;padding:0;display:flex;flex-direction:column;gap:6px}
.legend li{display:flex;align-items:center;gap:8px;font-size:13px}
.legend .sw{width:13px;height:13px;border-radius:3px;flex-shrink:0}

/* ===== Login ===== */
.login-wrap{min-height:100vh;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#0b3d6b,#0aa2c0);padding:20px}
.login-card{background:#fff;border-radius:20px;box-shadow:0 18px 50px rgba(0,0,0,.25);width:100%;max-width:410px;overflow:hidden}
.login-head{background:linear-gradient(135deg,#0d6efd,#0aa2c0);color:#fff;padding:34px 30px;text-align:center}
.login-head .bi{font-size:46px}
.login-body{padding:30px}

/* ===== Responsive ===== */
@media(max-width:991px){
  .sidebar{transform:translateX(-100%)}
  .sidebar.open{transform:none;box-shadow:0 0 40px rgba(0,0,0,.4)}
  .main{margin-left:0}
  .menu-btn{display:inline-flex}
  .topbar{padding-left:64px}
  .content{padding:16px}
}
@media(max-width:575px){
  .col-6{width:100%}
  .modal{padding:10px}
  .modal-dialog{margin:10px auto}
  .toolbar .form-control,.toolbar .form-select{width:100%}
}

/* ===== Print ===== */
@media print{
  .sidebar,.topbar,.footer,.toolbar,.menu-btn,.sb-backdrop,.no-print{display:none!important}
  .main{margin:0}.content{padding:0}.card{box-shadow:none}
  .d-print-block{display:block!important}
  body{background:#fff}
}

/* ============================================================
   Icons — SVG masks (แทน Bootstrap Icons font)
   ============================================================ */
.bi{display:inline-block;width:1em;height:1em;vertical-align:-.125em;
  background-color:currentColor;-webkit-mask:var(--bi) no-repeat center/contain;mask:var(--bi) no-repeat center/contain}
.bi-box{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M8 1.5 14 4.5 8 7.5 2 4.5z'/><path d='M2 4.5v7l6 3 6-3v-7'/><path d='M8 7.5v7'/></g></svg>")}
.bi-box-seam{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M8 1.5 14 4.5 8 7.5 2 4.5z'/><path d='M2 4.5v7l6 3 6-3v-7'/><path d='M8 7.5v7'/><path d='M5 3 11 6'/></g></svg>")}
.bi-box-arrow-in-down{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9v4h10V9'/><path d='M8 1v8'/><path d='M5 6l3 3 3-3'/></g></svg>")}
.bi-box-arrow-in-right{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 3H3v10h4'/><path d='M6 8h8'/><path d='M11 5l3 3-3 3'/></g></svg>")}
.bi-box-arrow-right{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 3H3v10h6'/><path d='M7 8h8'/><path d='M12 5l3 3-3 3'/></g></svg>")}
.bi-calendar-x{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round'><rect x='2.5' y='3' width='11' height='11' rx='1'/><path d='M2.5 6.2h11'/><path d='M6 9l4 4M10 9l-4 4'/></g></svg>")}
.bi-calendar3{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round'><rect x='2.5' y='3' width='11' height='11' rx='1'/><path d='M2.5 6.2h11M5 1.8v2.2M11 1.8v2.2'/></g></svg>")}
.bi-capsule{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><rect x='2' y='5' width='12' height='6' rx='3'/><path d='M8 5v6'/></g></svg>")}
.bi-cart-plus{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M1 2h2l1.6 7h7l1.4-4.5H4.2'/><circle cx='6' cy='13' r='1'/><circle cx='11.5' cy='13' r='1'/><path d='M11 2.5v3M9.5 4h3'/></g></svg>")}
.bi-check2{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3.5 3.5L13 5' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>")}
.bi-check2-all{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M1.5 8.5l3 3L10 5'/><path d='M7 11l.8.8L14 5'/></g></svg>")}
.bi-clock-history{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 4.5V8l2.5 1.5'/><path d='M3.2 7.5a5 5 0 1 1 1.3 4'/><path d='M3.2 5v2.6H5.8'/></g></svg>")}
.bi-exclamation-octagon{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M5.2 2h5.6L14 5.2v5.6L10.8 14H5.2L2 10.8V5.2z'/><path d='M8 5v4' stroke-linecap='round'/></g><circle cx='8' cy='11.3' r='.7'/></svg>")}
.bi-exclamation-triangle{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M8 2.2 14.6 13.6H1.4z'/><path d='M8 6.4v3.4' stroke-linecap='round'/></g><circle cx='8' cy='11.7' r='.7'/></svg>")}
.bi-eye-fill{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><path d='M1 8s2.5-4.5 7-4.5S15 8 15 8s-2.5 4.5-7 4.5S1 8 1 8z'/><circle cx='8' cy='8' r='2.2'/></g></svg>")}
.bi-file-earmark-excel{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M4 1.5h5l3 3V14H4z'/><path d='M9 1.5V4.5H12'/><path d='M6.3 8l3 3.2M9.3 8l-3 3.2' stroke-linecap='round'/></g></svg>")}
.bi-funnel{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M1.5 3h13l-5 6v4l-3-1.5V9z' fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'/></svg>")}
.bi-graph-up{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M2 2v12h12'/><path d='M4 10.5l3-3 2 2 4-5'/><path d='M13 4.5V7M10.5 4.5H13'/></g></svg>")}
.bi-info-circle{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><circle cx='8' cy='8' r='6.2'/><path d='M8 7.2v4' stroke-linecap='round'/></g><circle cx='8' cy='5' r='.7'/></svg>")}
.bi-list{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M2.5 4.5h11M2.5 8h11M2.5 11.5h11' stroke='black' stroke-width='1.5' stroke-linecap='round'/></svg>")}
.bi-list-ul{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g stroke='black' stroke-width='1.4' stroke-linecap='round'><path d='M5.5 4.5h8M5.5 8h8M5.5 11.5h8'/></g><g fill='black'><circle cx='3' cy='4.5' r='.8'/><circle cx='3' cy='8' r='.8'/><circle cx='3' cy='11.5' r='.8'/></g></svg>")}
.bi-lock{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><rect x='3.5' y='7' width='9' height='6.5' rx='1.2'/><path d='M5.5 7V5a2.5 2.5 0 0 1 5 0v2'/></g></svg>")}
.bi-pencil{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M11.5 2.5l2 2L6 12l-3 1 1-3z' fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'/></svg>")}
.bi-pencil-square{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M7.5 2.5H3v10.5h10.5V8.5'/><path d='M11 2l3 3-6 6-3.5 1 1-3.5z'/></g></svg>")}
.bi-person{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><circle cx='8' cy='5' r='2.6'/><path d='M3 14c0-3 2.3-4.5 5-4.5s5 1.5 5 4.5'/></g></svg>")}
.bi-person-gear{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><circle cx='6.5' cy='5' r='2.4'/><path d='M2 14c0-3 2-4.5 4.5-4.5'/><circle cx='12' cy='11.5' r='2'/><path d='M12 8.8v1M12 13.2v1M9.8 11.5h1M13.2 11.5h1'/></g></svg>")}
.bi-person-plus{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><circle cx='6.5' cy='5' r='2.6'/><path d='M2 14c0-3 2.2-4.5 4.5-4.5'/><path d='M12 9.5v4M10 11.5h4' stroke-linecap='round'/></g></svg>")}
.bi-pie-chart{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><circle cx='8' cy='8' r='6'/><path d='M8 8V2M8 8l5.2 3'/></g></svg>")}
.bi-plus-lg{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 2.5v11M2.5 8h11' stroke='black' stroke-width='1.8' stroke-linecap='round'/></svg>")}
.bi-printer{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M4 6V2.5h8V6'/><rect x='2' y='6' width='12' height='5' rx='1'/><path d='M4 9.5h8V14H4z'/></g></svg>")}
.bi-tags{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M2.5 2.5h5L13 8l-5 5-5.5-5.5z'/></g><circle cx='5' cy='5' r='.9'/></svg>")}
.bi-trash{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 4.5h10M6.5 4.5V3h3v1.5M4.6 4.5l.6 9h5.6l.6-9'/></g></svg>")}
.bi-speedometer2{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round'><path d='M2.4 12a5.6 5.6 0 1 1 11.2 0'/><path d='M8 12l3.2-3.2'/></g></svg>")}
.bi-clipboard2-pulse{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><rect x='3.5' y='3' width='9' height='11' rx='1'/><path d='M6 3.2V2.2h4v1'/><path d='M5 9.2h1.6l1-2.2 1.5 4 1-1.8H11' stroke-linecap='round'/></g></svg>")}
.bi-file-earmark-bar-graph{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M4 1.5h5l3 3V14H4z'/><path d='M9 1.5V4.5H12'/><path d='M6.5 11.5V9M8 11.5V7.5M9.5 11.5v-1.4' stroke-linecap='round'/></g></svg>")}
.bi-gear{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><circle cx='8' cy='8' r='2.1'/><path d='M8 1.6v2M8 12.4v2M1.6 8h2M12.4 8h2M3.5 3.5l1.4 1.4M11.1 11.1l1.4 1.4M12.5 3.5l-1.4 1.4M4.9 11.1l-1.4 1.4' stroke-linecap='round'/></g></svg>")}
.bi-people{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><circle cx='6' cy='5.5' r='2.2'/><path d='M2 13c0-2.4 1.8-3.7 4-3.7s4 1.3 4 3.7'/><path d='M10.6 3.7a2.2 2.2 0 0 1 0 3.9'/><path d='M11 9.5c1.7.2 3 1.4 3 3.5'/></g></svg>")}
.bi-shield-lock{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M8 1.6 13 3.4V8c0 3.4-2.3 5.6-5 6.4C5.3 13.6 3 11.4 3 8V3.4z'/><circle cx='8' cy='7' r='1.1'/><path d='M8 8v2' stroke-linecap='round'/></g></svg>")}
.bi-database{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2'><ellipse cx='8' cy='3.6' rx='5' ry='1.8'/><path d='M3 3.6v8.8c0 1 2.2 1.8 5 1.8s5-.8 5-1.8V3.6'/><path d='M3 8c0 1 2.2 1.8 5 1.8s5-.8 5-1.8'/></g></svg>")}
.bi-file-earmark{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linejoin='round'><path d='M4 1.5h5l3 3V14H4z'/><path d='M9 1.5V4.5H12'/></g></svg>")}
.bi-download{--bi:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><g fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 2v8'/><path d='M4.5 6.5 8 10l3.5-3.5'/><path d='M3 13h10'/></g></svg>")}
