:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --line: #dce3ef;
  --text: #1f2937;
  --muted: #667085;
  --primary: #0f62fe;
  --primary-dark: #0b4fd1;
  --success: #1e8e3e;
  --warning: #b26a00;
  --danger: #c62828;
  --shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; }
button, .button-link {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  padding: 11px 16px;
  font-weight: 600;
}
button:hover, .button-link:hover { background: var(--primary-dark); }
button.secondary, .button-link.secondary { background: #eef4ff; color: var(--primary); }
button.success { background: var(--success); }
button.warning { background: var(--warning); }
button.danger { background: var(--danger); }
button.ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.container { width: min(1380px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #0b1324;
  color: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
}
.brand h1, .brand h2, .brand p, .brand small { margin: 0; }
.brand small { color: #cad5e4; display: block; margin-top: 4px; }
.nav-links { display: flex; gap: 10px; flex-wrap: wrap; }
.nav-links a, .nav-links button {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 12px;
}
.hero { padding: 28px 0 8px; }
.hero-card, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 26px; }
.hero-grid, .grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 18px;
}
.hero-grid { grid-template-columns: 1.4fr 1fr; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { padding: 20px; }
.dashboard { padding: 24px 0 40px; }
.stats { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.stat span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.stat strong { font-size: 28px; display: block; }
.tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin: 18px 0; }
.tab-btn {
  background: #e9eef8;
  color: #23354d;
  border-radius: 999px;
  padding: 10px 16px;
  white-space: nowrap;
}
.tab-btn.active { background: var(--primary); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.form-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid .full { grid-column: 1 / -1; }
label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 14px;
}
textarea { min-height: 110px; resize: vertical; }
.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
th { background: #f8fafc; color: #475467; }
.message {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}
.message.hidden { display: none; }
.message.success { background: #e9f8ee; color: #0f6a2b; }
.message.error { background: #fdecec; color: #8f1d1d; }
.message.info { background: #eef4ff; color: #1849a9; }
.message.warning { background: #fff4e5; color: #8a4a00; }
.inline-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  background: #eef2f7;
  color: #344054;
  text-transform: capitalize;
}
.badge.success { background: #e9f8ee; color: #0f6a2b; }
.badge.warning { background: #fff4e5; color: #8a4a00; }
.badge.danger { background: #fdecec; color: #8f1d1d; }
.kv { display: grid; grid-template-columns: 190px 1fr; gap: 10px; font-size: 14px; }
.kv div:nth-child(odd) { color: var(--muted); }
.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 24px 0; }
.auth-card {
  width: min(960px, calc(100% - 32px));
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.auth-split { display: grid; grid-template-columns: 1fr 1fr; }
.auth-pane { padding: 32px; }
.auth-pane.dark { background: #0b1324; color: #fff; }
.auth-pane.dark p, .auth-pane.dark li, .auth-pane.dark small { color: #cad5e4; }
.auth-pane ul { padding-left: 18px; }
.list-tight { margin: 0; padding-left: 18px; }
.notice {
  padding: 14px 16px;
  border-radius: 14px;
  background: #edf7ff;
  border: 1px solid #cfe3ff;
  color: #1b4d8a;
}
.filter-bar, .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.filter-bar .inline-actions { flex-wrap: nowrap; }
.footer-note { color: var(--muted); font-size: 13px; margin-top: 14px; }
.small { font-size: 12px; color: var(--muted); }
.progress {
  width: 100%;
  height: 10px;
  background: #e7edf6;
  border-radius: 999px;
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  background: var(--primary);
}
.code-box {
  background: #0b1324;
  color: #eff4ff;
  border-radius: 14px;
  padding: 14px;
  font-family: monospace;
  white-space: pre-wrap;
  word-break: break-word;
}
hr.sep {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 16px 0;
}
@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .hero-grid, .grid-2, .auth-split, .form-grid, .grid-3, .grid-4, .stats { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .kv { grid-template-columns: 1fr; }
}

.button-link.dark{background:#111827;color:#fff}.button-link.dark:hover{background:#0b1324}
.simple-auth-page{background:linear-gradient(180deg,#fff8f2 0%,#f7efe7 100%)}
.simple-auth-card{width:min(460px,calc(100% - 32px));background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:0 15px 40px rgba(0,0,0,.08);padding:40px;text-align:center}
.simple-auth-card.landing-card{max-width:430px}
.simple-auth-card.register-card{width:min(760px,calc(100% - 32px))}
.simple-auth-logo{width:84px;height:auto;margin:0 auto 14px;display:block}
.eyebrow{margin:0 0 8px;font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--primary)}
.simple-auth-card h1{margin:0 0 12px;font-size:28px}
.simple-auth-copy{margin:0 0 22px;color:#667085;font-size:15px;line-height:1.6}
.simple-form{display:grid;gap:14px;text-align:left}.simple-form label span{display:block;font-size:13px;margin-bottom:6px;color:#475467}.simple-form input{width:100%}.simple-auth-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}.simple-auth-actions.stacked{flex-direction:column}.simple-auth-actions .button-link,.simple-auth-actions button{flex:1 1 auto;text-align:center}.simple-auth-links{margin-top:4px;text-align:center;font-size:13px}.register-form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.register-form-grid .full{grid-column:1/-1}
.quick-links{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
@media (max-width:700px){.register-form-grid{grid-template-columns:1fr}.simple-auth-card{padding:28px 22px}}


.preview-modal{position:fixed;inset:0;background:rgba(15,23,42,.72);display:flex;align-items:center;justify-content:center;padding:18px;z-index:1000}
.preview-modal.hidden{display:none}
.preview-shell{background:#fff;border-radius:18px;max-width:960px;width:min(96vw,960px);max-height:90vh;overflow:auto;padding:18px;box-shadow:0 18px 60px rgba(0,0,0,.25)}
.preview-content{min-height:280px}
.preview-content img{max-width:100%;height:auto;border-radius:12px;display:block;margin:0 auto}
.preview-content iframe{width:100%;height:72vh;border:0;border-radius:12px}
.stats .stat small{display:block;color:#64748b;margin-top:4px}
.inline-actions.wrap{flex-wrap:wrap}
.table-wrap table td .inline-actions button{margin-bottom:6px}
@media (max-width: 900px){
  .tabs{overflow:auto;white-space:nowrap;padding-bottom:6px}
  .grid-2{grid-template-columns:1fr !important}
  .topbar-inner,.nav-links{flex-wrap:wrap;gap:10px}
  .dashboard{padding:16px 0}
  .card{padding:16px}
  .form-grid{grid-template-columns:1fr !important}
}


.clean-dashboard { padding-top: 26px; }
.dashboard-shell { display:grid; grid-template-columns: 260px minmax(0,1fr); gap: 20px; align-items:start; }
.sidebar-nav { position: sticky; top: 92px; }
.sidebar-nav .tabs {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0;
  padding:16px;
  background: var(--card);
  border:1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: visible;
}
.sidebar-nav .tab-btn {
  width:100%;
  text-align:left;
  border-radius: 14px;
  padding: 12px 14px;
  background:#f6f8fc;
  color:#22324a;
}
.sidebar-nav .tab-btn.active {
  background: linear-gradient(135deg, var(--primary), #1f7bff);
  color:#fff;
  box-shadow: 0 10px 22px rgba(15,98,254,.18);
}
.dashboard-content { min-width:0; }
.card, .hero-card, .stat { backdrop-filter: blur(8px); }
.section-header h3 { margin:0; }
button, .button-link { box-shadow: 0 6px 16px rgba(15,98,254,.12); }
button.secondary, .button-link.secondary { border:1px solid #d8e4ff; }
.table-wrap { border-radius: 16px; }
th { position: sticky; top: 0; z-index: 1; }
.tabs::-webkit-scrollbar { height: 8px; width: 8px; }
.tabs::-webkit-scrollbar-thumb { background: #c8d4e4; border-radius: 999px; }
@media (max-width: 1100px){
  .dashboard-shell { grid-template-columns: 1fr; }
  .sidebar-nav { position: static; }
  .sidebar-nav .tabs {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
  }
  .sidebar-nav .tab-btn {
    width:auto;
    min-width:max-content;
  }
}
@media (max-width: 720px){
  .container { width:min(100% - 18px, 1380px); }
  .topbar { padding: 12px 0; }
  .brand img { width:42px; height:42px; }
  .nav-links a, .nav-links button { width:100%; text-align:center; }
  .inline-actions > * { flex: 1 1 100%; }
  button, .button-link { padding: 12px 14px; }
}

.clean-dashboard .dashboard-shell{display:grid;grid-template-columns:240px 1fr;gap:20px;align-items:start}.sidebar-nav{position:sticky;top:96px}.sidebar-nav .tabs{display:flex;flex-direction:column;margin:0}.dashboard-content{display:grid;gap:18px}.inline-actions.wrap{flex-wrap:wrap}.preview-modal{position:fixed;inset:0;background:rgba(11,19,36,.6);display:grid;place-items:center;padding:20px}.preview-modal.hidden{display:none}.preview-shell{width:min(980px,100%);max-height:88vh;overflow:auto;background:#fff;border-radius:20px;padding:20px;box-shadow:var(--shadow)}.preview-content iframe{width:100%;height:70vh;border:0;border-radius:16px}.preview-content img{width:100%;max-height:70vh;object-fit:contain;border-radius:16px;background:#f8fafc}.profile-header{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;margin-bottom:12px}.profile-photo-card{display:flex;flex-direction:column;gap:8px;align-items:center;padding:12px;border:1px solid var(--line);border-radius:16px;background:#f8fafc;min-width:140px}.profile-photo-card img{width:110px;height:110px;border-radius:18px;object-fit:cover;display:none}.profile-photo-card.hidden{display:none}.profile-preview{display:grid;gap:16px}.profile-preview-photo{width:140px;height:140px;border-radius:22px;object-fit:cover;border:1px solid var(--line)}.profile-preview-photo.empty{display:grid;place-items:center;background:#f8fafc;color:var(--muted)}.preview-card{padding:18px}.stat small{display:block;margin-top:6px;color:var(--muted)}@media (max-width: 980px){.clean-dashboard .dashboard-shell{grid-template-columns:1fr}.sidebar-nav{position:static}.sidebar-nav .tabs{flex-direction:row;overflow:auto}.stats{grid-template-columns:repeat(2,minmax(0,1fr))}.hero-grid,.grid-2,.grid-3,.grid-4,.auth-split,.form-grid{grid-template-columns:1fr}}@media (max-width:640px){.container{width:min(100% - 20px, 100%)}.topbar-inner,.profile-header,.section-header{align-items:flex-start}.stats{grid-template-columns:1fr}.nav-links{width:100%}.nav-links a,.nav-links button{flex:1}.tab-btn{border-radius:14px}}

.menu-toggle{display:none;background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.18)}
.sidebar-overlay{display:none}
.button-like{display:inline-flex;align-items:center;justify-content:center;padding:11px 16px;border-radius:12px;cursor:pointer;font-weight:600}
.button-like.secondary{background:#eef4ff;color:var(--primary);border:1px solid #d8e4ff}
.hidden-input{display:none !important}
.pager{display:flex;align-items:center;justify-content:flex-end;gap:10px;margin-top:14px;flex-wrap:wrap}
.icon-btn{min-width:40px;height:40px;padding:0 10px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;font-size:17px;line-height:1;background:#eef4ff;color:#1749a6;box-shadow:none;border:1px solid #d8e4ff}
.icon-btn.success{background:#e9f8ee;color:#0f6a2b;border-color:#cfe9d7}.icon-btn.danger{background:#fdecec;color:#8f1d1d;border-color:#f3cccc}.icon-btn.warning{background:#fff4e5;color:#8a4a00;border-color:#f2ddbc}.icon-btn.secondary{background:#eef4ff;color:#1749a6;border-color:#d8e4ff}.icon-btn.ghost{background:#fff;color:var(--text)}
.profile-photo-actions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.folder-grid{display:grid;gap:16px}.folder-card{border:1px solid var(--line);border-radius:16px;background:#fff;padding:16px;box-shadow:var(--shadow)}.folder-card h4{margin:0 0 8px}.folder-meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}
.preview-empty{display:grid;place-items:center;min-height:260px;border:1px dashed var(--line);border-radius:16px;color:var(--muted);padding:20px;text-align:center}
.preview-actions{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:16px}
@media (max-width: 980px){.menu-toggle{display:inline-flex}.dashboard-shell{grid-template-columns:1fr !important}.sidebar-overlay{position:fixed;inset:0;background:rgba(11,19,36,.55);z-index:98}.sidebar-nav{position:fixed !important;top:0;left:0;bottom:0;width:min(300px,84vw);transform:translateX(-105%);transition:transform .25s ease;z-index:99;padding:12px;background:transparent}.sidebar-nav .tabs{height:100%;overflow:auto;flex-direction:column !important;white-space:normal !important}.sidebar-open .sidebar-nav{transform:translateX(0)}.sidebar-open .sidebar-overlay{display:block}.nav-links{width:100%}}

.action-menu{position:relative;display:inline-block;min-width:120px}
.action-menu summary{list-style:none}
.action-menu summary::-webkit-details-marker{display:none}
.action-menu-trigger{display:inline-flex;align-items:center;justify-content:center;min-width:96px;padding:10px 14px;border-radius:12px;background:#eef4ff;color:var(--primary);font-weight:600;cursor:pointer;border:1px solid #d8e4ff}
.action-menu[open] .action-menu-trigger{background:#dfeaff}
.action-menu-panel{position:absolute;right:0;top:calc(100% + 8px);z-index:20;display:grid;gap:8px;min-width:180px;padding:10px;border:1px solid var(--line);border-radius:14px;background:#fff;box-shadow:var(--shadow)}
.action-menu-panel button{width:100%;text-align:left;box-shadow:none}

.checkbox-chip{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;margin:4px 8px 4px 0;border:1px solid #d8e4ff;border-radius:999px;background:#f7faff;font-size:13px;line-height:1.3;flex-wrap:wrap}
.checkbox-chip input{margin:0}

.brand img,.simple-auth-logo{filter:none;}
.landing-card .simple-auth-logo,.simple-auth-card .simple-auth-logo{width:112px;margin-bottom:18px;}
.brand img{width:52px;height:52px;border-radius:0;box-shadow:none;}
.eyebrow{color:var(--primary-dark);}


.profile-identity-card{display:flex;gap:18px;align-items:center;justify-content:space-between;background:linear-gradient(135deg,rgba(73,99,214,.10),rgba(232,140,82,.12));border:1px solid rgba(226,154,111,.45);border-radius:18px;padding:16px 18px;margin-bottom:14px;flex-wrap:wrap}.identity-title{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:#7c5c4f;font-weight:700}.identity-code{font-size:28px;font-weight:800;color:#1f2430;letter-spacing:.08em;margin:4px 0}.profile-barcode-wrap{background:#fff;border-radius:16px;padding:10px 12px;box-shadow:0 10px 25px rgba(27,32,56,.08);max-width:100%;overflow:auto}.profile-barcode-svg{display:block;height:110px;max-width:100%}.identity-meta{min-width:220px;flex:1 1 220px}

.brand img {
  width: 132px;
  height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.simple-auth-logo {
  width: 180px;
  height: auto;
  margin: 0 auto 18px;
}
.profile-photo-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.profile-photo-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.profile-photo-card {
  position: relative;
  width: 136px;
  min-width: 136px;
  min-height: 162px;
  padding: 12px;
  border-radius: 26px;
  border: 1px solid #ffd2b0;
  background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
  box-shadow: 0 14px 30px rgba(242, 139, 68, 0.16);
  cursor: pointer;
}
.profile-photo-card::after {
  content: "Double-click to change";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 11px;
  color: #9a5d30;
  text-align: center;
}
.profile-photo-card img {
  width: 100%;
  height: 112px;
  border-radius: 20px;
  object-fit: cover;
  display: none;
  background: linear-gradient(135deg, #f3f6fb, #eef2f8);
}
#staffProfilePhotoLabel {
  display: grid;
  place-items: center;
  min-height: 112px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f3f6fb, #eef2f8);
  color: #667085;
  padding: 14px;
  text-align: center;
  font-weight: 600;
}
.profile-card-head {
  margin-bottom: 16px;
}
.employment-card-shell #profileInfo {
  display: grid;
  gap: 18px;
}
.professional-id-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ed9657;
  box-shadow: 0 20px 40px rgba(242, 139, 68, 0.18);
  background: #fff;
}
.id-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #ffae68 0%, #f28b44 100%);
  color: #fff;
}
.id-card-brand img {
  width: 150px;
  height: auto;
  display: block;
}
.id-card-chip {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.id-card-main {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
}
.id-photo-box {
  width: 150px;
  height: 176px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f1f5fb 0%, #e9eef7 100%);
  border: 1px solid #dbe5f0;
  overflow: hidden;
  position: relative;
}
.id-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.id-photo-box.empty {
  display: grid;
  place-items: center;
  padding: 16px;
  color: #667085;
  text-align: center;
  font-weight: 600;
}
.id-card-name { font-size: 34px; line-height: 1.05; font-weight: 800; color: #1f2937; }
.id-card-role { font-size: 14px; color: #8a5b39; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.id-card-staff { font-size: 30px; font-weight: 800; color: #111827; letter-spacing: .08em; margin-top: 10px; }
.id-card-barcode { margin-top: 14px; }
.id-card-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 20px 20px;
  border-top: 1px solid #fde2cf;
  background: #fffaf6;
}
.id-foot-item span,
.id-details-grid .detail-label {
  display: block;
  font-size: 11px;
  color: #9a5d30;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-bottom: 5px;
}
.id-foot-item strong,
.id-details-grid .detail-value {
  font-size: 16px;
  color: #1f2937;
}
.id-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 18px 4px 0;
}
.brand img,.simple-auth-logo{filter:none !important;}
@media (max-width: 980px) {
  .id-card-main,
  .id-card-footer,
  .id-details-grid {
    grid-template-columns: 1fr;
  }
  .id-photo-box { width: 100%; max-width: 180px; }
}
