:root {
  --bg:#f1f6fc;
  --txt:#111;
  --muted:#6b7280;
  --ok:#16a34a;
  --bad:#e2462b;
  --pri:#207ce5;
  --blue1:#0f3c7a;
  --blue2:#1a6cb6;

  --btn3d_outer:0 14px 26px rgba(0,0,0,.22);
  --btn3d_shine:inset 0 2px 0 rgba(255,255,255,.35);
  --btn3d_depth:inset 0 -5px 0 rgba(0,0,0,.18);
  --press_outer:0 8px 16px rgba(0,0,0,.20);
  --press_shine:inset 0 2px 0 rgba(255,255,255,.28);
  --press_depth:inset 0 -2px 0 rgba(0,0,0,.22);
}

* {
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

html,
body {
  width:100%;
  height:100%;
  margin:0;
  overflow:hidden;
  font-family:Arial, sans-serif;
  color:var(--txt);
  background:
    linear-gradient(90deg, rgba(0,86,179,.12) 0%, rgba(0,86,179,0) 12%),
    linear-gradient(270deg, rgba(1,149,174,.12) 0%, rgba(1,149,174,0) 12%),
    #f2f4f7;
}

body::before {
  content:"FAZRUL SDN BHD";
  position:fixed;
  left:50%;
  bottom:35px;
  transform:translateX(-50%);
  font-family:"Arial Black", Impact, sans-serif;
  font-size:90px;
  font-weight:900;
  letter-spacing:6px;
  color:rgba(11,42,111,.10);
  pointer-events:none;
  z-index:0;
  white-space:nowrap;
}

.wrap {
  width:100%;
  max-width:980px;
  height:100dvh;
  margin:0 auto;
  padding:6px 14px 0;
  position:relative;
  z-index:1;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.stickyHeader {
  flex:0 0 auto;
  position:relative;
  z-index:999;
  padding-top:env(safe-area-inset-top);
  padding-bottom:8px;
}

.scrollArea {
  flex:1 1 auto;
  min-height:0;
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
  padding-bottom:16px;
}

.topbar {
  background:linear-gradient(90deg, var(--blue1), var(--blue2));
  border-radius:18px;
  padding:10px 14px;
  margin:6px 0 12px;
  min-height:90px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.22),
    inset 0 -3px 0 rgba(0,0,0,.28),
    0 10px 22px rgba(0,0,0,.18);
}

.topbar h1 {
  margin:0;
  font-size:1.50rem;
  font-weight:900;
  color:#fff;
}

.topbarVer {
  position:absolute;
  right:14px;
  bottom:10px;
  color:rgba(255,255,255,.80);
  font-size:.60rem;
}

.card {
  background:#e7f5ff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:14px;
  margin:10px 0;
  box-shadow:0 10px 22px rgba(0,0,0,.07);
  position:relative;
  z-index:2;
}

.cardConnect,
#scannerCard,
#cameraCard,
.moreSubCard {
  background:linear-gradient(90deg, var(--blue1), var(--blue2)) !important;
  color:#fff !important;
  border:1.5px solid rgba(255,255,255,.18) !important;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.22),
    inset 0 -3px 0 rgba(0,0,0,.28),
    0 10px 22px rgba(0,0,0,.12) !important;
}

.row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.connectRow {
  flex-wrap:nowrap !important;
}

.inp,
input,
textarea {
  background:#fff;
  border:1px solid rgba(15,23,42,.18);
  border-radius:16px;
  color:#111;
  box-shadow:
    inset 0 3px 8px rgba(0,0,0,.18),
    inset 0 -3px 0 rgba(255,255,255,.80),
    0 6px 14px rgba(0,0,0,.06);
}

input,
textarea,
button {
  font-size:18px;
  font-family:Arial, sans-serif;
}

#accessKeyInput {
  height:61px;
  max-width:240px;
  flex:1 1 auto;
  padding:0 12px;
  text-align:center;
}

#accessKeyInput.masked {
  background:#d9ecff !important;
  color:rgba(15,23,42,.60) !important;
  -webkit-text-fill-color:rgba(15,23,42,.60) !important;
  letter-spacing:3px;
  font-weight:700;
}

button,
.btn {
  border:0;
  cursor:pointer;
  border-radius:999px;
  font-weight:900;
  box-shadow:var(--btn3d_outer), var(--btn3d_shine), var(--btn3d_depth);
  transition:transform .06s ease, filter .12s ease, box-shadow .12s ease;
}

button:active,
.btn:active {
  transform:translateY(2px);
  box-shadow:var(--press_outer), var(--press_shine), var(--press_depth);
}

button:disabled {
  opacity:.50;
  filter:grayscale(.25);
  cursor:not-allowed;
}

#loginBtn,
#logoutBtn {
  width:62px;
  min-width:62px;
  height:62px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  border-radius:50%;
}

#loginBtn {
  background:#16a34a;
  color:#fff;
}

#logoutBtn {
  background:#e95c43;
  color:#fff;
}

.pillGroup {
  min-width:0;
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.userNamePill {
  height:50px;
  max-width:150px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--blue1), var(--blue2));
  color:#fff;
  border:1.5px solid rgba(255,255,255,.22);
  font-size:13px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.pill {
  height:50px;
  padding:0 14px;
  border-radius:999px;
  font-size:18px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.pillScanIn {
  background:#16a34a;
  color:#fff;
}

.pillScanOut {
  background:#b86a34;
  color:#fff;
}

.connectDivider,
.divider {
  height:1px;
  width:100%;
  margin:12px 0 10px;
  background:rgba(255,255,255,.18);
}

#statusBox {
  min-height:58px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  border:2px solid rgba(255,255,255,.14);
  color:#fff;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:800;
  line-height:1.22;
}

#statusBox.statusOk {
  background:rgba(111,236,157,.16);
  border-color:rgba(111,236,157,.28);
}

#statusBox.statusBad {
  background:rgba(233,92,67,.16);
  border-color:rgba(233,92,67,.28);
}

#statusBox.statusWarn {
  background:rgba(250,171,107,.16);
  border-color:rgba(250,171,107,.28);
}

.msg {
  margin-top:8px;
  color:#ffd7d7;
  font-weight:900;
  text-align:center;
}

.lastScanCard {
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}

.lastScanTopLeft {
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.lastScanHead {
  font-size:.54rem;
  font-weight:900;
  color:rgba(255,255,255,.74);
  text-transform:uppercase;
}

.lastScanDot {
  color:rgba(255,255,255,.78);
}

.lastScanPerson {
  min-width:0;
  color:#fff;
  font-size:.78rem;
  font-weight:900;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.lastScanAction {
  margin-left:auto;
  padding:3px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:.60rem;
  font-weight:900;
  white-space:nowrap;
}

.lastScanGrid {
  margin-top:8px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:8px;
}

.lastScanItem {
  min-width:0;
  padding:7px 9px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.lastScanItem .k {
  display:block;
  font-size:.48rem;
  font-weight:900;
  color:rgba(255,255,255,.66);
  text-transform:uppercase;
}

.lastScanItem .v {
  display:block;
  margin-top:2px;
  font-size:.68rem;
  font-weight:900;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.actionRow {
  display:flex;
  gap:12px;
  align-items:stretch;
}

.actionGrid4 {
  flex:1 1 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr) auto;
  gap:18px;
  width:100%;
}

.actionGrid4 .btn {
  width:100%;
  min-height:80px;
  font-size:24px;
}

.btnOk {
  background:#16a34a;
  color:#fff;
}

.btnStop {
  background:#e95c43;
  color:#fff;
}

.btnBad {
  background:#b86a34;
  color:#fff;
}

.btnPri {
  background:#2563eb;
  color:#fff;
}

.btnMoreThin {
  width:54px;
  min-width:54px;
  padding:0;
  font-size:34px;
  background:#2a7fd0;
  color:#fff;
}

.notesRow {
  display:grid;
  grid-template-columns:140px 1fr;
  gap:12px;
  align-items:start;
  margin-top:10px;
}

.notesLeft {
  display:flex;
  flex-direction:column;
  gap:4px;
}

.noLunchLabel {
  display:flex;
  flex-direction:row-reverse;
  align-items:center;
  gap:8px;
  width:100%;
}

.noLunchText {
  flex:1;
  text-align:right;
  font-size:20px;
  font-weight:500;
}

.notesRight {
  position:relative;
}

.notesRight textarea {
  width:100%;
  height:58px;
  padding:8px 64px 8px 12px;
  resize:none;
}

.notesCount {
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  font-size:14px;
  color:rgba(15,23,42,.45);
}

.scanFrame {
  position:relative;
  background:#444545;
  border-radius:12px;
  padding:4px;
}

#qr-reader {
  width:100% !important;
  max-width:700px !important;
  height:min(52dvh, 420px) !important;
  margin:0 auto !important;
  background:#000 !important;
  border-radius:12px !important;
  overflow:hidden !important;
}

.stopMini {
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  z-index:50;
  width:46px;
  height:46px;
  border-radius:14px;
  background:#e95c43;
  color:#fff;
  display:none;
  align-items:center;
  justify-content:center;
}

.morePanelCard {
  margin:10px 0 0 !important;
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.moreSubCard {
  padding:12px;
  border-radius:18px;
}

.moreSubTitle {
  margin:0 0 10px;
  color:rgba(255,255,255,.86);
  font-size:15px;
  font-weight:900;
}

.moreGrid4,
.moreGrid4Self {
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}

.btnSelfBlue {
  min-height:64px;
  padding:0 6px;
  background:#2a7fd0;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  white-space:nowrap;
}

#btnSelfIn,
#btnAddLocation {
  background:#70ec9d !important;
  color:#111 !important;
}

#btnSelfOut {
  background:#faab6b !important;
  color:#111 !important;
}

#btnLocation,
#btnEditLocation {
  background:#ffd966 !important;
  color:#111 !important;
}

#btnNotice {
  background:#bfe3ff !important;
  color:#102033 !important;
}

#btnClearLocCache {
  background:#d9e2ef !important;
  color:#102033 !important;
}

.vModal {
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}

.vModalBg {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.vModalCard {
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:min(1020px, 96vw);
  max-height:92vh;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  display:flex;
  flex-direction:column;
}

.vHeader {
  background:linear-gradient(90deg, var(--blue1), var(--blue2));
  color:#fff;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.vTitle {
  font-size:32px;
  font-weight:900;
}

.vClose {
  width:48px;
  height:48px;
  border-radius:12px;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:22px;
}

.vTopShell {
  display:grid;
  grid-template-columns:1fr auto;
  background:#d9ecff;
  border-bottom:1px solid rgba(15,23,42,.12);
}

.vControlsArea {
  padding:10px 14px;
}

.vRow {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

#v_date,
#v_q {
  height:46px;
  padding:0 12px;
  font-size:16px;
}

.vStatsbar {
  display:flex;
  align-items:center;
  gap:16px;
  padding:10px 14px 14px;
  border-top:1px solid rgba(15,23,42,.12);
}

.vStatsleft {
  display:flex;
  gap:14px;
}

.vStatitem .k {
  font-size:16px;
  font-weight:600;
}

.vStatitem .v {
  font-size:20px;
  font-weight:900;
}

.chk {
  font-size:18px;
  font-weight:900;
}

.vOpenOnly {
  margin-left:auto;
}

.vTopRight {
  padding:10px 14px 12px;
  border-left:1px solid rgba(15,23,42,.12);
  display:flex;
  gap:12px;
}

.vTopRight button {
  min-height:52px;
  min-width:110px;
  padding:10px 14px;
  border-radius:12px;
  background:#1a6cb6;
  color:#fff;
  font-size:18px;
}

.vBtnDark {
  background:#0f3c7a !important;
}

.vTableWrap {
  overflow:auto;
  flex:1 1 auto;
  max-height:68vh;
}

.vTable {
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;
}

.vTable thead th {
  position:sticky;
  top:0;
  background:linear-gradient(180deg, #2a7fd0 0%, #1a6cb6 55%, #155a9a 100%);
  color:#fff;
  font-weight:900;
  padding:12px 10px;
}

.vTable th,
.vTable td {
  border-bottom:1px solid #e5e7eb;
  padding:12px 10px;
  font-size:18px;
  overflow-wrap:anywhere;
}

.vTable tbody tr:nth-child(even) {
  background:#f5f9ff;
}

.vStatus {
  padding:10px 12px;
  border-top:1px solid rgba(15,23,42,.12);
  background:#fbfbfd;
  color:#0f172a;
  font-size:16px;
  font-weight:600;
}

.emptyCell {
  text-align:center;
  color:#777;
  padding:18px;
}

.hidden {
  display:none !important;
}

@media (max-width:560px) {
  body::before {
    font-size:42px;
    letter-spacing:2px;
    bottom:14px;
  }

  .wrap {
    padding:4px 10px 0;
  }

  .topbar {
    min-height:57px;
    padding:6px 10px;
    margin:4px 0 8px;
    border-radius:14px;
  }

  .topbar h1 {
    font-size:1.33rem;
  }

  .topbarVer {
    font-size:.59rem;
    right:10px;
    bottom:8px;
  }

  .card {
    padding:10px;
    margin:8px 0;
    border-radius:14px;
  }

  .connectRow {
    gap:6px;
  }

  #accessKeyInput {
    max-width:104px;
    height:34px;
    font-size:16px;
    border-radius:10px;
  }

  #loginBtn,
  #logoutBtn {
    width:40px;
    min-width:40px;
    height:40px;
    font-size:20px;
  }

  .userNamePill {
    max-width:108px;
    height:36px;
    font-size:11.5px;
  }

  .pill {
    max-width:76px;
    height:36px;
    font-size:11px;
  }

  #statusBox {
    min-height:38px;
    padding:7px 9px;
    border-radius:11px;
    font-size:13px;
  }

  .lastScanPerson {
    max-width:118px;
    font-size:.70rem;
  }

  .lastScanAction {
    max-width:78px;
    font-size:.54rem;
  }

  .lastScanItem .k {
    font-size:.44rem;
  }

  .lastScanItem .v {
    font-size:.62rem;
  }

  .actionRow {
    display:grid;
    grid-template-columns:minmax(0,1fr) 44px;
    grid-template-rows:45px 45px;
    gap:8px 7px;
  }

  .actionGrid4 {
    grid-column:1 / 2;
    grid-row:1 / 3;
    grid-template-columns:repeat(2, minmax(0,1fr));
    grid-auto-rows:45px;
    gap:8px;
  }

  .actionGrid4 .btn {
    min-height:45px;
    height:45px;
    font-size:13px;
    padding:0 4px;
  }

  #btnMore,
  #btnActionMini2 {
    width:44px;
    min-width:44px;
    height:45px;
    font-size:22px;
  }

  #btnMore {
    grid-column:2 / 3;
    grid-row:1 / 2;
  }

  #btnActionMini2 {
    grid-column:2 / 3;
    grid-row:2 / 3;
  }

  .notesRow {
    grid-template-columns:86px minmax(0,1fr);
    gap:7px;
  }

  .noLunchText {
    font-size:11px;
  }

  .notesRight textarea {
    height:38px;
    padding:6px 38px 6px 8px;
    font-size:13px;
  }

  .notesCount {
    font-size:10px;
    right:6px;
  }

  #qr-reader {
    max-width:100% !important;
  }

  .moreGrid4,
  .moreGrid4Self {
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:6px;
  }

  .btnSelfBlue {
    height:45px;
    min-height:45px;
    font-size:10.5px;
    padding:0 3px;
  }

  .vModalCard {
    width:96vw;
    max-height:94vh;
    border-radius:12px;
  }

  .vHeader {
    padding:8px 10px;
  }

  .vTitle {
    font-size:16px;
  }

  .vClose {
    width:34px;
    height:34px;
    font-size:16px;
  }

  .vTopShell {
    grid-template-columns:minmax(0,1fr) 86px;
  }

  .vControlsArea,
  .vStatsbar {
    padding:8px;
  }

  .vRow {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
  }

  #v_date,
  #v_q {
    width:100%;
    height:34px;
    font-size:11px;
    padding:0 6px;
  }

  .vStatsbar {
    gap:8px;
    flex-wrap:wrap;
  }

  .vStatitem .k,
  .chk {
    font-size:11px;
  }

  .vStatitem .v {
    font-size:13px;
  }

  .vTopRight {
    flex-direction:column;
    gap:8px;
    padding:8px;
  }

  .vTopRight button {
    min-width:0;
    min-height:34px;
    font-size:12px;
    padding:6px 8px;
  }

  .vTableWrap {
    max-height:58vh;
  }

  .vTable th,
  .vTable td {
    font-size:11px;
    padding:6px 3px;
  }

  .vStatus {
    font-size:11px;
    padding:8px;
  }
}

.locModal,
.locListModal,
.noticeModal {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(26,108,182,.24), transparent 38%),
    rgba(0,0,0,.48);
}

.locModal[hidden],
.locListModal[hidden],
.noticeModal[hidden] {
  display: none !important;
}

.locModalBg,
.locListModalBg,
.noticeModalBg {
  position: absolute;
  inset: 0;
}

.locModalBox,
.locListModalBox,
.noticeModalBox {
  position: relative;
  width: min(94vw, 560px);
  max-height: 92vh;
  overflow: auto;
  padding: 0 16px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
  border-radius: 22px;
  border: 1px solid rgba(15,60,122,.16);
  text-align: center;
  box-shadow:
    0 24px 55px rgba(0,0,0,.34),
    inset 0 2px 0 rgba(255,255,255,.85);
}

.locModalBox::before,
.locListModalBox::before,
.noticeModalBox::before {
  content: "";
  display: block;
  height: 12px;
  margin: 0 -16px 16px;
  background: linear-gradient(90deg, #0f3c7a, #1a6cb6);
}

.locCloseBtn,
.locListCloseBtn,
.noticeCloseBtn {
  position: absolute;
  left: 12px;
  top: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(233,92,67,.14);
  color: #b42318;
  font-size: 20px !important;
  font-weight: 900;
}

.locModalTitle,
.locListTitle,
.noticeTitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  margin: 2px auto 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f3c7a, #1a6cb6);
  color: #fff;
  font-size: 18px !important;
  font-weight: 900;
}

.locModalSub,
.locListSub,
.noticeSub {
  margin: 0 0 12px;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.locPickRow {
  margin-bottom: 10px;
}

.locGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.locWide {
  grid-column: 1 / -1;
}

.locField {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  text-align: left;
}

.locField span {
  font-size: 13px !important;
  font-weight: 900;
  color: #0f3c7a;
}

.locField input,
.locField select {
  width: 100%;
  height: 44px;
  padding: 0 10px;
  font-size: 16px !important;
  border-radius: 12px;
}

.locBtnRow {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.locBtn,
.locListReloadBtn,
.noticeAckBtn {
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-size: 15px !important;
  font-weight: 900;
}

.locBtn.gps {
  background: #ffd966;
  color: #111;
}

.locBtn.cancel {
  background: #b86a34;
  color: #fff;
}

.locBtn.save,
.noticeAckBtn {
  background: #16a34a;
  color: #fff;
}

.locListTop {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.locListTop input {
  flex: 1;
  height: 44px;
  padding: 0 10px;
}

.locListReloadBtn {
  background: #1a6cb6;
  color: #fff;
}

.locListStatus,
.noticeStatus {
  margin: 8px 0;
  padding: 9px 12px;
  border-radius: 13px;
  background: #fff;
  border: 2px solid rgba(15,60,122,.16);
  color: #102033;
  font-size: 14px;
  font-weight: 900;
}

.locListTableWrap {
  overflow: auto;
  max-height: 55vh;
}

.locListTable {
  width: 100%;
  border-collapse: collapse;
}

.locListTable th {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #2a7fd0 0%, #1a6cb6 55%, #155a9a 100%);
  color: #fff;
  padding: 9px 7px;
  font-size: 13px;
}

.locListTable td {
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 7px;
  font-size: 13px;
}

.noticeList {
  text-align: left;
}

.noticeItem {
  margin: 10px 0;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15,60,122,.14);
}

.noticeItemTitle {
  font-size: 17px;
  font-weight: 900;
  color: #0f3c7a;
  margin-bottom: 8px;
}

.noticeItemMsg {
  font-size: 15px;
  font-weight: 700;
  color: #102033;
  line-height: 1.35;
  white-space: pre-wrap;
}

.noticeItemMeta {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
}

.noticeAckRow {
  margin-top: 12px;
  text-align: center;
}

.noticeAckBtn:disabled {
  background: #d9e2ef;
  color: #64748b;
}

@media (max-width: 560px) {
  .locModal,
  .locListModal,
  .noticeModal {
    padding: 12px;
  }

  .locModalBox,
  .locListModalBox,
  .noticeModalBox {
    width: min(94vw, 390px);
    padding: 0 14px 14px;
    border-radius: 20px;
  }

  .locGrid {
    gap: 8px;
  }

  .locField span {
    font-size: 11px !important;
  }

  .locField input,
  .locField select {
    height: 38px;
    font-size: 13px !important;
  }

  .locBtn,
  .locListReloadBtn,
  .noticeAckBtn {
    height: 38px;
    padding: 0 12px;
    font-size: 12px !important;
  }

  .locListTop {
    gap: 6px;
  }

  .locListTable th,
  .locListTable td {
    font-size: 11px;
    padding: 6px 4px;
  }
}

.vFilterGroup {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-left: auto;
}

.vFilterGroup .chk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.vFilterGroup input[type="checkbox"] {
  width: auto;
  transform: scale(1.15);
}

@media (max-width: 560px) {
  .vFilterGroup {
    gap: 7px;
    width: 100%;
    margin-left: 0;
  }

  .vFilterGroup .chk {
    font-size: 11px;
  }
}

.vSortTh {
  cursor: pointer;
  user-select: none;
  position: relative;
}

.vSortTh::after {
  content: " ⇅";
  font-size: 11px;
  opacity: 0.65;
}

.vSortTh.sortAsc::after {
  content: " ▲";
  opacity: 1;
}

.vSortTh.sortDesc::after {
  content: " ▼";
  opacity: 1;
}