@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+Bengali:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0A1931;
  --cyan: #00B8D4;
  --white: #ffffff;
  --off: #f7fbfd;
  --ink: #102033;
  --muted: #617184;
  --line: rgba(10, 25, 49, 0.12);
  --success: #0d8b63;
  --warn: #b36b00;
  --danger: #b42318;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(10, 25, 49, 0.12);
  --app-header-height: 0px;
  --compact-header-height: 0px;
  --topic-tabs-height: 52px;
  --mobile-tabbar-height: 64px;
  --sticky-offset: calc(var(--compact-header-height) + var(--topic-tabs-height));
  --header-height: var(--app-header-height);
  font-family: "Inter", "Noto Sans Bengali", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--off);
  font-size: 14px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font-family: "Inter", "Noto Sans Bengali", system-ui, sans-serif;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.site-header,
.header-inner,
.topics-root,
.topic-section,
.topic-body,
.modal-sheet,
.admin-member-card,
.feedback-panel,
.info-block,
.choice {
  max-width: 100%;
  min-width: 0;
}

.hidden {
  display: none !important;
}

.is-locked {
  visibility: hidden;
  max-height: 100vh;
  overflow: hidden;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  max-height: 100dvh;
  padding: 18px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: var(--navy);
}

.auth-card {
  width: min(100%, 430px);
  max-width: 100%;
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  padding: 22px 20px calc(28px + env(safe-area-inset-bottom));
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.auth-card > .auth-logo,
.auth-card > .auth-kicker,
.auth-card > h1,
.auth-card > .auth-copy {
  text-align: center;
}

.auth-card > .auth-logo {
  display: block;
  margin: 0 auto 10px;
}

.auth-brand {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.auth-logo {
  width: 100px;
  height: auto;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
}

.auth-kicker,
.header-label,
.eyebrow,
.status-pill,
.answer-status {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.auth-card h1 {
  margin: 6px 0 6px;
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.12;
}

.auth-copy,
.form-note {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
}

.auth-form,
.feedback-form {
  display: grid;
  gap: 14px;
}

label span,
.question-title {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.auth-card label span {
  color: var(--white);
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 184, 212, 0.16);
}

.auth-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: #d8f8ff;
}

.app-shell {
  min-height: 100vh;
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 80;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(10, 25, 49, 0.18);
  transition: box-shadow 180ms ease;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 16px;
}

.header-topline {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.meeting-logo {
  width: 78px;
  height: auto;
  padding: 6px;
  background: var(--white);
  border-radius: var(--radius);
}

.header-label {
  color: var(--cyan);
}

.site-header h1 {
  margin: 4px 0 0;
  max-width: 920px;
  font-size: clamp(28px, 3.4vw, 34px);
  line-height: 1.08;
}

.header-intro {
  margin: 14px 0 0;
  max-width: 880px;
  color: rgba(255, 255, 255, 0.8);
}

.header-meta,
.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.deadline-badge,
.member-badge,
.logout-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.member-actions {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.logout-button {
  color: var(--white);
  cursor: pointer;
}

.primary-button,
.secondary-button,
.small-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.primary-button {
  color: var(--navy);
  background: var(--cyan);
}

.secondary-button {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.link-button {
  min-height: auto;
  padding: 2px;
  color: var(--cyan);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.small-button {
  min-height: 36px;
  padding: 8px 10px;
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  font-size: 12px;
}

.compact-topic {
  display: none;
  margin: 2px 0 0;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.site-header.is-compact .header-inner {
  padding: 9px 16px;
}

.site-header.is-compact .meeting-logo {
  width: 54px;
}

.site-header.is-compact .header-topline {
  grid-template-columns: 54px minmax(0, 1fr);
}

.site-header.is-compact .header-label,
.site-header.is-compact .header-intro,
.site-header.is-compact .header-meta,
.site-header.is-compact .header-actions {
  display: none;
}

.site-header.is-compact h1 {
  max-width: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 1.2;
}

.site-header.is-compact .compact-topic {
  display: block;
}

.topic-tabs {
  position: sticky;
  top: var(--compact-header-height, 0px);
  z-index: 70;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: top 180ms ease;
}

.tab-scroller {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.tab-scroller::-webkit-scrollbar {
  display: none;
}

.topic-tab {
  position: relative;
  flex: 0 0 auto;
  min-width: 84px;
  min-height: 50px;
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  scroll-snap-align: start;
  text-align: center;
  font-weight: 900;
  cursor: pointer;
}

.topic-tab::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  background: transparent;
  border-radius: 999px;
  content: "";
}

.topic-tab.is-active {
  color: var(--navy);
}

.topic-tab.is-active::after {
  background: var(--cyan);
}

.tab-status {
  display: inline-flex;
  margin-top: 2px;
  padding: 1px 5px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
}

.tab-label-short {
  display: block;
}

.topics-root {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 54px;
}

.topic-section {
  position: relative;
  margin-bottom: 26px;
  scroll-margin-top: calc(var(--sticky-offset) + 8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
}

.topic-mini-header {
  position: sticky;
  top: var(--sticky-offset);
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
}

.topic-mini-header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.status-pill {
  display: inline-flex;
  margin-top: 4px;
  padding: 3px 8px;
  color: var(--warn);
  background: rgba(179, 107, 0, 0.09);
  border-radius: 999px;
}

.status-confirmed {
  color: var(--success) !important;
  background: rgba(13, 139, 99, 0.12) !important;
}

.status-saved {
  color: #087f95 !important;
  background: rgba(0, 184, 212, 0.13) !important;
}

.status-pending {
  color: var(--warn) !important;
  background: rgba(179, 107, 0, 0.11) !important;
}

.status-not-answered {
  color: var(--muted) !important;
  background: rgba(97, 113, 132, 0.12) !important;
}

.admin-active {
  border: 1px solid rgba(0, 184, 212, 0.35);
}

.topic-body {
  display: grid;
  gap: 20px;
  padding: 14px;
}

.topic-visual {
  min-height: 210px;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
}

.topic-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.fair-card {
  min-height: 240px;
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 184, 212, 0.18), transparent 45%),
    var(--navy);
}

.fair-card img {
  width: 128px;
  min-height: auto;
  height: auto;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
  object-fit: contain;
}

.fair-card h3 {
  margin: 28px 0 8px;
  max-width: 420px;
  font-size: 28px;
  line-height: 1.12;
}

.fair-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.content-grid {
  display: grid;
  gap: 14px;
}

.info-block {
  padding: 14px;
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-block h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.25;
}

.info-block p {
  margin: 0;
  color: var(--muted);
}

.feedback-panel {
  padding: 14px;
  background: #eef9fb;
  border: 1px solid rgba(0, 184, 212, 0.24);
  border-radius: var(--radius);
}

.feedback-panel h3 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.2;
}

.answer-status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 8px;
  color: var(--muted);
  background: var(--white);
  border-radius: 999px;
}

.option-group {
  display: grid;
  gap: 8px;
}

.feedback-form label:has(textarea[name="comment"]) {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
}

.feedback-form label:has(textarea[name="comment"]) > span {
  display: inline-block;
  width: fit-content;
  margin: -2px 0 0;
  padding: 0 4px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.feedback-form label:has(textarea[name="comment"]) textarea {
  min-width: 0;
}

.choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.choice input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--cyan);
}

.choice:has(input:disabled) {
  opacity: 0.48;
  cursor: not-allowed;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(10, 25, 49, 0.54);
  opacity: 0;
  transition: opacity 180ms ease;
}

.modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}

.modal-sheet {
  position: relative;
  width: min(100%, 720px);
  max-height: 80vh;
  min-height: 70vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--white);
  border-radius: 16px 16px var(--radius) var(--radius);
  box-shadow: 0 24px 70px rgba(10, 25, 49, 0.32);
  transform: translateY(18px);
  transition: transform 180ms ease;
}

.modal-backdrop.is-open .modal-sheet {
  transform: translateY(0);
}

.modal-head {
  padding: 18px 18px 10px;
  border-bottom: 1px solid var(--line);
}

.modal-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.modal-head p {
  margin: 5px 0 0;
  color: var(--muted);
}

.modal-body {
  overflow-y: auto;
  padding: 16px 18px 74px;
}

.pdf-preview {
  height: 52vh;
  min-height: 320px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off);
}

.pdf-preview iframe,
.pdf-preview object {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  right: 50%;
  bottom: 16px;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  transform: translateX(50%);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.result-grid {
  display: grid;
  gap: 12px;
}

.result-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.result-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.admin-sheet {
  width: min(100%, 920px);
}

.admin-body,
.admin-form,
.admin-member-list {
  display: grid;
  gap: 12px;
}

.admin-section,
.admin-temp-box,
.admin-member-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-section h3,
.admin-temp-box p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.admin-form {
  grid-template-columns: 1fr;
}

.admin-form .primary-button,
.admin-member-actions .small-button {
  width: 100%;
}

.admin-section-head,
.admin-member-head,
.admin-member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.admin-member-card {
  display: grid;
  gap: 10px;
}

.admin-member-head strong {
  color: var(--navy);
}

.admin-member-meta {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.admin-member-meta span {
  display: block;
}

.admin-temp-box {
  background: #eef9fb;
  border-color: rgba(0, 184, 212, 0.24);
}

.admin-temp-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  word-break: break-all;
}

.member-action-status {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.member-action-status.is-success {
  color: var(--success);
}

.member-action-status.is-error {
  color: var(--danger);
}

.member-progress-bar {
  display: block;
  height: 4px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy), var(--success));
  border-radius: 999px;
  animation: progressSweep 900ms ease-in-out infinite alternate;
}

.member-action-status.is-success .member-progress-bar {
  background: var(--success);
  animation: none;
}

.member-action-status.is-error .member-progress-bar {
  background: var(--danger);
  animation: none;
}

.member-temp-password {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: rgba(13, 139, 99, 0.08);
  border: 1px solid rgba(13, 139, 99, 0.18);
  border-radius: var(--radius);
}

.member-temp-password p {
  margin: 0;
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
}

.member-temp-password strong {
  color: var(--navy);
  font-size: 18px;
  word-break: break-all;
}

@keyframes progressSweep {
  from {
    opacity: 0.62;
    transform: scaleX(0.35);
    transform-origin: left;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

.metric-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.bar {
  height: 9px;
  margin-top: 5px;
  overflow: hidden;
  background: #e5eef2;
  border-radius: 999px;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--cyan);
}

.site-footer {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 34px 16px 44px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
  text-align: center;
}

.site-footer img {
  width: 112px;
  padding: 7px;
  background: var(--white);
  border-radius: var(--radius);
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 900;
}

.site-footer small {
  max-width: 520px;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 120;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 25, 49, 0.58);
  box-shadow: 0 14px 30px rgba(10, 25, 49, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    padding: 24px 28px 20px;
  }

  .topic-tabs {
    top: var(--compact-header-height, 0px);
  }

  .topic-tab {
    flex: 1 1 0;
    max-width: 156px;
    min-width: 96px;
    min-height: 50px;
    padding: 8px 10px;
  }

  .tab-label-short {
    display: block;
  }

  .topics-root {
    padding: 28px 28px 72px;
  }

  .topic-body {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    padding: 20px;
  }

  .feedback-panel {
    grid-column: 1 / -1;
    padding: 18px;
  }

  .admin-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-form .primary-button {
    grid-column: 1 / -1;
  }

  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid .info-block:first-child {
    grid-column: 1 / -1;
  }

  .modal-backdrop {
    align-items: center;
  }
}

@media (max-width: 767px) {
  :root {
    --app-header-height: 0px;
    --compact-header-height: 0px;
    --topic-tabs-height: 0px;
    --mobile-tabbar-height: 62px;
    --sticky-offset: 0px;
  }

  .auth-gate {
    align-items: start;
    place-items: start center;
    padding: 12px;
  }

  .auth-card {
    width: min(100%, 420px);
    max-height: calc(100dvh - 24px);
    padding: 18px 16px calc(28px + env(safe-area-inset-bottom));
  }

  .auth-brand {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .auth-logo {
    width: 86px;
  }

  .auth-card h1 {
    font-size: clamp(22px, 6.2vw, 28px);
  }

  .auth-copy,
  .form-note {
    margin-bottom: 12px;
  }

  .header-topline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-inner {
    padding: 12px 16px 14px;
  }

  .site-header h1 {
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.08;
  }

  .topics-root {
    padding-right: 12px;
    padding-left: 12px;
    padding-bottom: calc(var(--mobile-tabbar-height, 62px) + 32px + env(safe-area-inset-bottom));
  }

  .app-shell {
    padding-bottom: calc(var(--mobile-tabbar-height, 62px) + env(safe-area-inset-bottom));
  }

  .header-intro {
    margin-top: 10px;
  }

  .header-meta,
  .header-actions {
    margin-top: 10px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topic-tabs {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    top: auto;
    z-index: 120;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    border-bottom: 0;
    box-shadow: 0 -10px 28px rgba(10, 25, 49, 0.12);
  }

  .tab-scroller {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    max-width: none;
    min-height: var(--mobile-tabbar-height, 62px);
    align-items: stretch;
    overflow-x: hidden;
    scroll-snap-type: none;
  }

  .topic-tab {
    display: grid;
    min-width: 0;
    min-height: var(--mobile-tabbar-height, 62px);
    align-content: center;
    justify-items: center;
    padding: 7px 2px 6px;
    overflow: visible;
    font-size: 12px;
    line-height: 1.1;
  }

  .tab-label-short {
    display: block;
  }

  .tab-status {
    margin-top: 3px;
    padding: 1px 4px;
    font-size: 8px;
    line-height: 1.05;
  }

  .topic-mini-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px 10px;
    top: 0;
  }

  .topic-mini-header h2 {
    font-size: clamp(13px, 3.7vw, 15px);
    line-height: 1.18;
  }

  .status-pill {
    margin-top: 2px;
    padding: 2px 7px;
    font-size: 9px;
  }

  .small-button {
    min-height: 32px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .modal-sheet {
    width: min(94vw, 720px);
    max-height: 88dvh;
    min-height: 70dvh;
  }

  .modal-head h2 {
    font-size: 22px;
  }

  .admin-member-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .back-to-top {
    bottom: calc(var(--mobile-tabbar-height, 62px) + 18px + env(safe-area-inset-bottom));
    z-index: 130;
  }
}
