:root {
  color-scheme: light;
  --ink: #18283c;
  --muted: #66758a;
  --line: #dce3eb;
  --paper: #ffffff;
  --canvas: #f8fafc;
  --accent: #166a70;
  --accent-deep: #0f5358;
  --accent-soft: #dff1f0;
  --success: #17633e;
  --shadow: 0 18px 50px rgba(38, 56, 76, 0.09);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(22, 106, 112, 0.11), transparent 34rem),
    linear-gradient(145deg, #f5f7f9, #eef2f5);
  font-family: "Segoe UI", Arial, sans-serif;
}

.landing-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.landing-card {
  width: 100%;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(207, 217, 228, .9);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}

.landing-card h1 { margin-bottom: 8px; }
.landing-card code { display: block; margin: 24px 0; padding: 16px; overflow-wrap: anywhere; border: 1px solid #cde0df; border-radius: 12px; color: var(--accent-deep); background: var(--accent-soft); font-size: 15px; }
.landing-note { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.error-card { border-top: 5px solid #b34a43; }
.completed-card { border-top: 5px solid #2d8a5d; }

button, input { font: inherit; }

.shell {
  width: min(1540px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2 { margin: 0; letter-spacing: -0.025em; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 2.4vw, 38px); line-height: 1.05; }
h2 { font-size: 20px; }

.intro {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .65fr);
  gap: 16px;
  align-items: start;
}

.card {
  border: 1px solid rgba(207, 217, 228, .9);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.documents { padding: 16px; }
.signing { position: sticky; top: 14px; padding: 18px; }

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.section-heading > div:first-child { display: flex; align-items: center; gap: 10px; }
.step { display: inline-grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; color: var(--accent-deep); background: var(--accent-soft); font-size: 12px; font-weight: 800; }

.document-tabs {
  display: flex;
  padding: 4px;
  border-radius: 12px;
  background: #eef2f5;
}

.tab {
  padding: 9px 13px;
  border: 0;
  border-radius: 9px;
  color: #536276;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.tab.active { color: var(--ink); background: #fff; box-shadow: 0 2px 8px rgba(31, 48, 68, .1); }

.pdf-frame-wrap {
  height: min(calc(100vh - 172px), 800px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #e8edf2;
}

iframe { width: 100%; height: 100%; border: 0; }

.text-link { display: inline-block; margin-top: 13px; color: var(--accent-deep); font-size: 13px; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.quiet-button {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.hint { margin: -2px 0 10px; color: var(--muted); font-size: 13px; line-height: 1.4; }

.signature-box {
  position: relative;
  height: 190px;
  overflow: hidden;
  border: 1.5px dashed #aebbc8;
  border-radius: 14px;
  background:
    linear-gradient(to bottom, transparent 74%, rgba(116, 132, 150, .12) 74.5%, transparent 75%),
    var(--canvas);
  touch-action: none;
}

#signature-canvas { display: block; width: 100%; height: 100%; cursor: crosshair; touch-action: none; }
#signature-placeholder { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; color: #a2adba; font-family: Georgia, serif; font-size: 18px; font-style: italic; }
#signature-placeholder[hidden] { display: none; }

.confirm-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 14px 0; color: #45566b; font-size: 13px; line-height: 1.4; cursor: pointer; }
.confirm-row input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--accent); }

.primary-button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 9px 22px rgba(22,106,112,.2);
  cursor: pointer;
  font-weight: 800;
}

.primary-button:hover:not(:disabled) { background: var(--accent-deep); }
.primary-button:disabled { cursor: not-allowed; opacity: .45; box-shadow: none; }

.status { min-height: 18px; margin: 8px 0 0; color: #a23d36; font-size: 13px; }
.status.working { color: var(--accent-deep); }

.access-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(100% - 28px, 520px);
  margin: 0 auto;
  padding: 32px 0;
}
.access-card {
  width: 100%;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(207, 217, 228, .95);
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
}
.access-lock {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 9px 22px rgba(22,106,112,.22);
  font-size: 22px;
  font-weight: 800;
}
.access-card h1 { font-size: clamp(28px, 7vw, 38px); }
.access-intro { margin: 12px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.access-form { padding-top: 18px; border-top: 1px solid var(--line); }
.access-form > label { display: block; margin-bottom: 7px; color: #45566b; font-size: 13px; font-weight: 700; }
.access-recipient { margin: 0 0 14px; color: var(--muted); font-size: 13px; line-height: 1.45; }
#access-otp-code { width: 100%; margin-bottom: 11px; padding: 14px; border: 1px solid #b9c7d4; border-radius: 11px; color: var(--ink); background: #fff; font-size: 24px; font-weight: 700; letter-spacing: .3em; text-align: center; }
#access-otp-code:focus { outline: 3px solid rgba(22, 106, 112, .16); border-color: var(--accent); }
.resend-button { width: 100%; margin-top: 9px; }
.quiet-button:disabled { cursor: not-allowed; opacity: .55; }
.access-status { min-height: 20px; margin-top: 13px; text-align: center; }
.access-note { margin: 16px 0 0; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }

.success-panel { margin-top: 14px; padding: 16px; border: 1px solid #bcdcc9; border-radius: 13px; color: var(--success); background: #eef9f2; }
.success-panel p { margin: 5px 0 13px; color: #4e6b59; font-size: 13px; }

.admin-entry-link { display: inline-flex; margin-top: 22px; padding: 10px 14px; border-radius: 11px; color: #fff; background: var(--accent); font-size: 13px; font-weight: 800; text-decoration: none; }
.admin-entry-link:hover { background: var(--accent-deep); }

.admin-login-shell { min-height: 100vh; display: grid; place-items: center; width: min(100% - 28px, 470px); margin: 0 auto; padding: 32px 0; }
.admin-login-card { width: 100%; padding: clamp(26px, 6vw, 42px); border: 1px solid rgba(207,217,228,.95); border-radius: 24px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
.admin-brand-mark { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 15px; color: #fff; background: linear-gradient(145deg, var(--accent), #244b67); font-family: Georgia, serif; font-weight: 800; }
.admin-login-intro { margin: 12px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.admin-login-form label { display: block; margin-bottom: 7px; color: #45566b; font-size: 13px; font-weight: 700; }
.admin-login-form input { width: 100%; margin-bottom: 12px; padding: 13px 14px; border: 1px solid #b9c7d4; border-radius: 11px; color: var(--ink); background: #fff; }
.admin-login-form input:focus { outline: 3px solid rgba(22,106,112,.16); border-color: var(--accent); }
.admin-privacy-note { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.5; }

.admin-body { background: #f2f5f7; }
.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body .admin-brand-mark,
.admin-body .admin-logo-mark,
.admin-body .admin-kpi strong {
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}
.admin-shell { width: min(1380px, calc(100% - 36px)); margin: 0 auto; padding: 28px 0 44px; }
.admin-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.admin-subtitle { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.admin-actions { display: flex; align-items: center; gap: 9px; }
.admin-actions label { color: var(--muted); font-size: 12px; font-weight: 700; }
.admin-actions select { min-height: 36px; padding: 0 30px 0 11px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; font: inherit; font-size: 13px; }
.admin-status { margin: 0 0 14px; padding: 11px 14px; border: 1px solid #cde0df; border-radius: 11px; color: var(--accent-deep); background: var(--accent-soft); font-size: 13px; }
.admin-status[hidden] { display: none; }
.admin-kpi-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.admin-kpi { min-height: 142px; padding: 19px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 26px rgba(38,56,76,.055); }
.admin-kpi span { display: block; color: #536276; font-size: 13px; font-weight: 700; }
.admin-kpi strong { display: block; margin: 13px 0 8px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 3vw, 38px); line-height: 1; }
.admin-kpi small { color: #8793a2; font-size: 11px; }
.admin-kpi-primary { border-top: 4px solid var(--accent); }
.admin-kpi-success { border-top: 4px solid #2d8a5d; }
.admin-kpi-warning { border-top: 4px solid #c27a36; }
.admin-main-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(300px, .7fr); gap: 14px; margin-top: 14px; }
.admin-panel { padding: 20px; border: 1px solid var(--line); border-radius: 19px; background: #fff; box-shadow: 0 10px 26px rgba(38,56,76,.055); }
.admin-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.admin-panel-heading .eyebrow { margin-bottom: 5px; }
.admin-panel-heading h2 { font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif; font-size: 21px; }
.admin-panel-heading > small { color: var(--muted); }
.chart-legend { display: flex; gap: 14px; color: var(--muted); font-size: 11px; }
.chart-legend span::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 5px; border-radius: 2px; }
.legend-opened::before { background: #9eb8c5; }
.legend-verified::before { background: #58a5a2; }
.legend-completed::before { background: #17633e; }
.activity-chart { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(18px, 1fr); align-items: end; gap: 4px; height: 260px; padding: 18px 4px 0; overflow-x: auto; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to top, transparent 0, transparent 64px, #edf1f4 65px); }
.chart-day { display: grid; grid-template-rows: 220px 18px; align-items: end; min-width: 18px; height: 100%; }
.chart-bars { display: flex; align-items: end; justify-content: center; gap: 2px; height: 100%; }
.chart-bar { display: block; width: 27%; min-width: 3px; border-radius: 3px 3px 0 0; }
.chart-opened { background: #9eb8c5; }
.chart-verified { background: #58a5a2; }
.chart-completed { background: #17633e; }
.chart-day small { color: #8491a0; font-size: 9px; text-align: center; white-space: nowrap; transform: rotate(-35deg); }
.funnel-list { display: grid; gap: 8px; }
.funnel-list div { display: flex; align-items: center; justify-content: space-between; min-height: 43px; padding: 0 13px; border-radius: 10px; color: #425369; background: #f2f6f7; font-size: 13px; }
.funnel-list div:nth-child(2) { margin-inline: 8px; }
.funnel-list div:nth-child(3) { margin-inline: 16px; }
.funnel-list div:nth-child(4) { margin-inline: 24px; color: #fff; background: var(--accent); }
.funnel-list strong { font-size: 16px; }
.admin-insight { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.admin-insight strong { color: var(--ink); font-size: 17px; }
.admin-table-panel { margin-top: 14px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table-panel table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table-panel th, .admin-table-panel td { padding: 11px 12px; border-bottom: 1px solid #edf1f4; text-align: right; }
.admin-table-panel th:first-child, .admin-table-panel td:first-child { text-align: left; }
.admin-table-panel thead th { color: var(--muted); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

.admin-tab-panel[hidden], .admin-actions[hidden] { display: none; }
.admin-layout { display: grid; grid-template-columns: 244px minmax(0, 1fr); min-height: 100vh; }
.admin-sidebar { position: sticky; top: 0; display: flex; flex-direction: column; height: 100vh; padding: 24px 17px; color: #dce9ed; background: #102e3a; }
.admin-logo { display: flex; align-items: center; gap: 11px; padding: 4px 6px 24px; color: #fff; text-decoration: none; }
.admin-logo-mark { display: grid; place-items: center; width: 41px; height: 41px; border-radius: 13px; color: #102e3a; background: #a9ded9; font-family: Georgia, "Times New Roman", serif; font-weight: 800; }
.admin-logo strong, .admin-logo small { display: block; }
.admin-logo strong { font-size: 14px; letter-spacing: .05em; }
.admin-logo small { margin-top: 3px; color: #96b4bf; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.admin-nav { display: grid; gap: 7px; }
.admin-nav-item { display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; gap: 9px; width: 100%; padding: 11px; border: 0; border-radius: 12px; color: #b8ced5; background: transparent; text-align: left; cursor: pointer; }
.admin-nav-item:hover { color: #fff; background: rgba(255,255,255,.07); }
.admin-nav-item.is-active { color: #fff; background: rgba(169,222,217,.15); box-shadow: inset 3px 0 #a9ded9; }
.admin-nav-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: #a9ded9; background: rgba(169,222,217,.08); font-size: 16px; }
.admin-nav-item strong, .admin-nav-item small { display: block; }
.admin-nav-item strong { font-size: 13px; }
.admin-nav-item small { margin-top: 3px; color: #7fa0ab; font-size: 10px; }
.admin-sidebar-note { margin-top: auto; padding: 13px; border: 1px solid rgba(169,222,217,.17); border-radius: 12px; background: rgba(5,27,35,.28); }
.admin-sidebar-note strong, .admin-sidebar-note span { display: block; }
.admin-sidebar-note strong { color: #dff5f2; font-size: 12px; }
.admin-sidebar-note span { margin-top: 5px; color: #91adb6; font-size: 10px; line-height: 1.45; }
.admin-logout { margin-top: 12px; padding: 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: #c5d6dc; background: transparent; font: inherit; font-size: 12px; cursor: pointer; }
.admin-logout:hover { color: #fff; background: rgba(255,255,255,.06); }
.admin-content { min-width: 0; width: min(100%, 1500px); padding: 28px clamp(20px, 3vw, 44px) 48px; }
.admin-topbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.admin-topbar h1 { font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif; font-size: clamp(30px, 4vw, 42px); }
.acceptance-filters { display: grid; grid-template-columns: minmax(170px, 1.4fr) minmax(170px, 1.2fr) 110px 140px 140px auto; align-items: end; gap: 10px; margin-bottom: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 10px 26px rgba(38,56,76,.04); }
.acceptance-filters label span { display: block; margin-bottom: 6px; color: #536276; font-size: 11px; font-weight: 800; }
.acceptance-filters input { width: 100%; min-height: 39px; padding: 0 11px; border: 1px solid #c7d2dc; border-radius: 9px; color: var(--ink); background: #fbfcfd; font: inherit; font-size: 12px; }
.acceptance-filters input:focus { outline: 3px solid rgba(22,106,112,.13); border-color: var(--accent); background: #fff; }
.acceptance-filter-actions { display: flex; gap: 7px; }
.acceptance-filter-actions .primary-button, .acceptance-filter-actions .quiet-button { min-height: 39px; padding: 0 13px; white-space: nowrap; }
.acceptance-panel { padding-bottom: 12px; }
.acceptance-heading { align-items: center; }
.acceptance-heading small { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; }
.acceptance-heading .primary-button { display: inline-flex; align-items: center; justify-content: center; width: auto; min-height: 39px; padding: 0 15px; text-decoration: none; white-space: nowrap; }
.acceptance-table { width: 100%; min-width: 900px; border-collapse: collapse; font-size: 12px; }
.acceptance-table th, .acceptance-table td { padding: 13px 11px; border-bottom: 1px solid #edf1f4; text-align: left; vertical-align: top; }
.acceptance-table thead th { color: #748292; background: #f8fafb; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.acceptance-table td:nth-child(1), .acceptance-table td:nth-child(4), .acceptance-table td:nth-child(5) { white-space: nowrap; }
.acceptance-files { display: grid; gap: 4px; min-width: 230px; }
.acceptance-files small { color: #8a96a3; font-size: 10px; }
.archive-document-link { max-width: 360px; overflow: hidden; color: #135f69; font-weight: 700; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.archive-document-link:hover, .table-action-link:hover { text-decoration: underline; }
.acceptance-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.table-action-link { padding: 6px 8px; border: 1px solid #c9dcdf; border-radius: 8px; color: var(--accent-deep); background: #f4f9f9; font-size: 10px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.acceptance-empty { padding: 42px 16px !important; color: var(--muted); text-align: center !important; }
.acceptance-pagination { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding-top: 13px; }
.acceptance-pagination span { color: var(--muted); font-size: 11px; }
.acceptance-privacy-note { margin: 12px 3px 0; color: #7d8998; font-size: 10px; }

@media (max-width: 1000px) {
  .workspace { grid-template-columns: 1fr; }
  .signing { position: static; }
  .pdf-frame-wrap { height: 680px; }
  .admin-kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-main-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 82px minmax(0, 1fr); }
  .admin-sidebar { padding-inline: 12px; }
  .admin-logo { justify-content: center; }
  .admin-logo > span:last-child, .admin-nav-item span:last-child, .admin-sidebar-note { display: none; }
  .admin-nav-item { display: grid; grid-template-columns: 1fr; justify-items: center; padding: 8px; }
  .admin-logout { font-size: 0; }
  .admin-logout::after { content: "Thoát"; font-size: 10px; }
  .acceptance-filters { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 20px, 1480px); padding-top: 14px; }
  .section-heading:not(.compact) { align-items: stretch; flex-direction: column; }
  .document-tabs { width: 100%; }
  .tab { flex: 1; }
  .documents, .signing { padding: 15px; border-radius: 17px; }
  .pdf-frame-wrap { min-height: 470px; height: 62vh; }
  .signature-box { height: 190px; }
  .access-shell { width: min(100% - 20px, 520px); padding: 18px 0; }
  .access-card { border-radius: 18px; }
  .admin-shell { width: min(100% - 20px, 1380px); padding-top: 18px; }
  .admin-header { align-items: stretch; flex-direction: column; }
  .admin-actions { align-items: stretch; flex-wrap: wrap; }
  .admin-actions label { width: 100%; }
  .admin-actions select { flex: 1; }
  .admin-kpi-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .admin-kpi { min-height: 124px; padding: 15px; }
  .admin-kpi strong { font-size: 27px; }
  .admin-panel { padding: 16px; }
  .admin-panel-heading { align-items: stretch; flex-direction: column; }
  .chart-legend { flex-wrap: wrap; }
  .admin-layout { display: block; }
  .admin-sidebar { position: static; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px; width: 100%; height: auto; padding: 10px; }
  .admin-logo { padding: 0; }
  .admin-logo-mark { width: 36px; height: 36px; }
  .admin-nav { display: flex; justify-content: center; }
  .admin-nav-item { display: flex; width: auto; padding: 7px 10px; }
  .admin-nav-item span:last-child { display: block; }
  .admin-nav-item small { display: none; }
  .admin-nav-icon { width: 27px; height: 27px; }
  .admin-logout { margin: 0; padding: 9px; }
  .admin-content { padding: 19px 10px 36px; }
  .admin-topbar { align-items: stretch; flex-direction: column; }
  .acceptance-filters { grid-template-columns: 1fr 1fr; }
  .acceptance-filter-actions { grid-column: 1 / -1; }
}

@media (max-width: 430px) {
  .admin-kpi-grid { grid-template-columns: 1fr; }
  .admin-nav-item { font-size: 11px; }
  .admin-nav-item span:last-child { display: none; }
  .acceptance-filters { grid-template-columns: 1fr; }
  .acceptance-filter-actions { grid-column: auto; }
}
