:root {
  color-scheme: light;
  --ink: #191b19;
  --muted: #777770;
  --panel: #c9c2b6;
  --panel-deep: #b9b0a2;
  --field: #f4f0e7;
  --field-edge: rgba(255, 255, 255, 0.82);
  --green: #17362f;
  --green-strong: #0d241f;
  --green-soft: #385648;
  --green-tint: #dce4dc;
  --weekly: #dfe9dd;
  --weekly-edge: #6e8d73;
  --amber: #b2783f;
  --amber-soft: #eadac6;
  --shadow: rgba(18, 17, 14, 0.28);
  font-family:
    "Microsoft YaHei UI",
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.26)),
    #1c1d1a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.phone-stage {
  width: min(100vw, 430px);
  min-height: 100svh;
  margin: 0 auto;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #d0c9bd 0%, var(--panel) 58%, #b9b1a6 100%);
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 0 46px rgba(0, 0, 0, 0.48);
}

.login-view,
.room-view {
  min-height: 100svh;
}

.hero-wrap {
  position: relative;
  height: clamp(382px, 51svh, 450px);
  overflow: hidden;
  background: #151512;
}

.hero-wrap::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(12, 12, 10, 0.78));
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.entry-panel {
  min-height: calc(100svh - clamp(382px, 51svh, 450px));
  padding: clamp(24px, 3.1svh, 34px) 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 18%),
    repeating-linear-gradient(93deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 11px),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-deep) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

h1 {
  margin: 0;
  font-size: clamp(45px, 12.3vw, 60px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  color: #171918;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28),
    0 8px 16px rgba(30, 29, 25, 0.18);
}

.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(250px, 72%);
  margin: 18px auto 22px;
  color: rgba(37, 38, 34, 0.32);
}

.divider span {
  height: 1px;
  background: currentColor;
}

.divider i,
.bottom-mark {
  font-style: normal;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
}

.login-form {
  display: grid;
  gap: 18px;
}

.input-shell {
  position: relative;
}

.input-lock {
  position: absolute;
  top: 50%;
  left: 31px;
  z-index: 1;
  width: 32px;
  height: 39px;
  opacity: 0.76;
  transform: translateY(-50%);
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#accessCode {
  width: 100%;
  height: 68px;
  border: 2px solid var(--field-edge);
  border-radius: 26px;
  padding: 0 28px 0 82px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.22)),
    var(--field);
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  outline: none;
  box-shadow:
    inset 0 1px 5px rgba(255, 255, 255, 0.7),
    0 12px 26px rgba(28, 24, 18, 0.11);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

#accessCode::placeholder {
  color: #8f918b;
}

#accessCode:focus {
  border-color: rgba(23, 54, 47, 0.72);
  box-shadow:
    inset 0 1px 5px rgba(255, 255, 255, 0.72),
    0 0 0 5px rgba(23, 54, 47, 0.16),
    0 14px 28px rgba(28, 24, 18, 0.13);
}

.form-message {
  min-height: 20px;
  margin: -7px 6px -1px;
  color: #78442f;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.enter-button,
.leave-button {
  width: 100%;
  min-height: 70px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, var(--green-soft), var(--green) 45%, var(--green-strong));
  color: #fff9ed;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 32px rgba(13, 36, 31, 0.35);
  transition:
    transform 170ms ease,
    filter 170ms ease,
    box-shadow 170ms ease;
}

.enter-button:active,
.leave-button:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 18px rgba(13, 36, 31, 0.28);
}

.enter-button:focus-visible,
.leave-button:focus-visible {
  outline: 4px solid rgba(178, 120, 63, 0.42);
  outline-offset: 4px;
}

.enter-button.is-loading {
  filter: saturate(0.8) brightness(0.95);
  pointer-events: none;
}

.bottom-mark {
  margin-top: 20px;
  color: rgba(37, 38, 34, 0.34);
  text-align: center;
}

.login-form.has-error #accessCode {
  border-color: rgba(120, 68, 47, 0.62);
  animation: shake 280ms ease both;
}

.room-view {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(23, 54, 47, 0.26) 0 74px, transparent 74px),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.3), transparent 28%),
    radial-gradient(circle at 86% 9%, rgba(178, 120, 63, 0.14), transparent 26%),
    repeating-linear-gradient(93deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 11px),
    linear-gradient(180deg, #d0c9bd 0%, #bdb5a8 100%);
}

.room-view[hidden] {
  display: none;
}

.app-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100svh;
  min-height: 100svh;
  padding: 14px 16px 16px;
}

.app-header {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(244, 240, 231, 0.42)),
    rgba(244, 240, 231, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 14px 30px rgba(28, 24, 18, 0.12);
}

.mini-hero {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-radius: 16px;
  background: #151512;
  box-shadow: 0 8px 16px rgba(13, 36, 31, 0.22);
}

.mini-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 10%;
}

.header-copy {
  min-width: 0;
}

.header-copy p {
  margin: 0 0 3px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-copy h2 {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-action {
  min-width: 50px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(23, 54, 47, 0.1);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent),
    rgba(23, 54, 47, 0.11);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.work-panel {
  flex: 1;
  min-height: 0;
  padding: 15px 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.58), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(244, 240, 231, 0.3) 44%, rgba(23, 54, 47, 0.04)),
    rgba(244, 240, 231, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 16px 36px rgba(28, 24, 18, 0.1);
}

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

.section-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

.section-head p {
  margin: 0 0 2px;
  color: #64645d;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.name-card {
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(23, 54, 47, 0.22);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.1)),
    rgba(244, 240, 231, 0.72);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 8px 18px rgba(28, 24, 18, 0.08);
}

.name-card strong,
.name-card span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.name-card strong {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
}

.name-card span {
  color: #64645d;
  font-size: 11px;
  font-weight: 800;
}

.card-grid.is-ten {
  gap: 8px;
}

.card-grid.is-ten .name-card {
  min-height: 60px;
  padding: 9px 10px;
  border-radius: 15px;
}

.card-grid.is-ten .name-card strong {
  margin-bottom: 6px;
  font-size: 17px;
}

.card-grid.is-ten .name-card span {
  font-size: 10px;
}

.card-grid.is-all {
  gap: 6px;
}

.card-grid.is-all .name-card {
  min-height: 50px;
  padding: 8px 10px;
  border-radius: 14px;
}

.card-grid.is-all .name-card strong {
  margin-bottom: 5px;
  font-size: 16px;
}

.card-grid.is-all .name-card span {
  font-size: 10px;
}

.person-panel {
  display: flex;
  flex-direction: column;
}

.submit-panel {
  flex: 1;
}

.submit-button {
  width: 100%;
  min-height: 54px;
  margin-bottom: 14px;
  border-radius: 19px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, var(--green-soft), var(--green) 48%, var(--green-strong));
  color: #fff9ed;
  font-size: 19px;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 13px 25px rgba(13, 36, 31, 0.27);
}

.case-form {
  display: grid;
  gap: 12px;
}

.submit-head {
  margin-bottom: 0;
}

.case-options {
  display: grid;
  gap: 8px;
}

.case-option {
  display: block;
}

.case-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.case-option span {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 63px;
  padding: 8px 14px;
  border: 2px solid rgba(23, 54, 47, 0.18);
  border-radius: 15px;
  background: rgba(244, 240, 231, 0.64);
  color: #252620;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.case-option strong {
  font-size: 17px;
  line-height: 1.08;
  font-weight: 900;
}

.case-option small {
  color: #6b6b63;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
}

.case-option input:checked + span {
  border-color: rgba(23, 54, 47, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 38%),
    linear-gradient(180deg, var(--green-soft), var(--green-strong));
  color: #fff9ed;
}

.case-option input:checked + span small {
  color: rgba(255, 249, 237, 0.78);
}

.time-field {
  display: grid;
  gap: 6px;
}

.time-field span {
  color: #64645d;
  font-size: 13px;
  font-weight: 900;
}

.time-field strong {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 2px solid rgba(23, 54, 47, 0.2);
  border-radius: 15px;
  padding: 0 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent),
    rgba(244, 240, 231, 0.72);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.form-actions {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 10px;
}

.cancel-button,
.save-button {
  min-height: 52px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 900;
}

.cancel-button {
  background: rgba(23, 54, 47, 0.1);
  color: var(--green);
}

.save-button {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, var(--green-soft), var(--green) 48%, var(--green-strong));
  color: #fff9ed;
  box-shadow: 0 12px 22px rgba(13, 36, 31, 0.24);
}

.record-head {
  margin-bottom: 8px;
}

.record-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.record-row,
.empty-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(70px, 1fr) 82px 60px;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  overflow: hidden;
  padding: 7px 8px 7px 13px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent),
    rgba(244, 240, 231, 0.62);
  color: #34352f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.record-row::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 4px;
  content: "";
  background: rgba(178, 120, 63, 0.36);
  border-radius: 0 999px 999px 0;
}

.record-row.is-weekly {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent),
    var(--weekly);
}

.record-row.is-weekly::before {
  background: var(--weekly-edge);
}

.record-main {
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-row time {
  color: #686861;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.record-row button {
  min-height: 30px;
  border-radius: 10px;
  background: rgba(23, 54, 47, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.record-row em {
  color: #7b7a72;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.empty-row {
  grid-template-columns: 1fr;
  color: #686861;
  font-size: 14px;
  font-weight: 800;
}

.inline-note {
  min-height: 20px;
  margin: 10px 0 0;
  color: #78442f;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.leader-dashboard {
  display: flex;
  min-height: 0;
  padding: 10px;
  overflow: hidden;
}

.leader-scroll {
  display: grid;
  gap: 10px;
  width: 100%;
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
}

.leader-chart-area,
.leader-detail,
.leader-team-detail {
  border: 1px solid rgba(23, 54, 47, 0.14);
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.12)),
    rgba(244, 240, 231, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.leader-chart-area,
.leader-detail {
  padding: 10px;
}

.leader-area-head,
.leader-team-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.leader-area-head h3,
.leader-team-title h4 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.05;
  font-weight: 900;
}

.leader-area-head p,
.leader-team-title p {
  margin: 0 0 1px;
  color: #64645d;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.pie-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.pie-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.pie-card {
  min-width: 0;
  padding: 7px 4px 6px;
  border-radius: 14px;
  background: rgba(255, 252, 245, 0.42);
  text-align: center;
}

.pie-chart {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: var(--pie);
  box-shadow:
    inset 0 0 0 1px rgba(13, 36, 31, 0.08),
    0 7px 14px rgba(28, 24, 18, 0.12);
}

.pie-grid.is-single .pie-chart {
  width: 108px;
  height: 108px;
}

.pie-grid.is-single .pie-chart::after {
  inset: 29px;
}

.pie-grid.is-single .pie-card strong {
  font-size: 14px;
}

.pie-chart::after {
  position: absolute;
  inset: 20px;
  content: "";
  border-radius: 50%;
  background: #ece4d8;
  box-shadow: inset 0 1px 2px rgba(28, 24, 18, 0.1);
}

.pie-chart span {
  position: relative;
  z-index: 1;
  color: var(--green-strong);
  font-size: 18px;
  font-weight: 900;
}

.pie-card strong {
  display: block;
  overflow: hidden;
  color: #252620;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pie-legend {
  display: grid;
  gap: 2px;
  margin-top: 5px;
  color: #5f5f57;
  font-size: 10px;
  font-weight: 900;
}

.pie-legend span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.pie-legend i {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.leader-detail {
  display: grid;
  gap: 9px;
}

.leader-team-detail {
  padding: 9px;
}

.leader-team-title {
  margin-bottom: 7px;
}

.leader-person-list {
  display: grid;
  gap: 7px;
}

.leader-person-card {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 8px;
  border: 1px solid rgba(23, 54, 47, 0.11);
  border-radius: 14px;
  background: rgba(255, 252, 245, 0.42);
  color: var(--ink);
  text-align: left;
}

.leader-person-card.is-complete,
.leader-person-summary.is-complete {
  border-color: rgba(110, 141, 115, 0.66);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent),
    var(--weekly);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 17px rgba(23, 54, 47, 0.12);
}

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

.leader-person-top strong {
  overflow: hidden;
  color: #22241f;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leader-person-top span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.leader-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(178, 120, 63, 0.16);
  color: #6a4c2f;
  font-size: 11px;
  font-weight: 900;
}

.is-complete .leader-status-badge {
  background: var(--green);
  color: #fff9ed;
}

.leader-person-card small {
  display: block;
  color: #64645d;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.leader-count-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.leader-count-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 25px;
  border-radius: 9px;
  background: rgba(23, 54, 47, 0.08);
  color: #34352f;
  font-size: 11px;
  font-weight: 900;
}

.leader-count-strip b {
  color: #62635b;
  font-size: 10px;
}

.leader-records {
  display: grid;
  gap: 5px;
}

.leader-records.is-history {
  gap: 7px;
}

.leader-case-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px 42px;
  align-items: center;
  gap: 5px;
  min-height: 32px;
  padding: 5px 5px 5px 9px;
  border-radius: 10px;
  background: rgba(244, 240, 231, 0.58);
}

.leader-case-row.is-weekly {
  background: var(--weekly);
}

.leader-case-row span {
  overflow: hidden;
  color: #33342f;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leader-case-row time {
  color: #686861;
  font-size: 10px;
  font-weight: 900;
  text-align: right;
}

.leader-case-row button {
  min-height: 25px;
  border-radius: 8px;
  background: rgba(23, 54, 47, 0.14);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.empty-compact {
  margin: 0;
  color: #686861;
  font-size: 12px;
  font-weight: 800;
}

.leader-history-panel {
  overflow-y: auto;
}

.leader-person-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid rgba(23, 54, 47, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.12)),
    rgba(244, 240, 231, 0.58);
}

.leader-person-summary .leader-person-top strong {
  font-size: 20px;
}

.leader-time-edit input {
  width: 100%;
  min-height: 48px;
  border: 2px solid rgba(23, 54, 47, 0.2);
  border-radius: 15px;
  padding: 0 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent),
    rgba(244, 240, 231, 0.72);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.leader-time-edit input:focus {
  border-color: rgba(23, 54, 47, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 0 0 4px rgba(23, 54, 47, 0.14);
}

.placeholder-panel h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.placeholder-panel p {
  margin: 0;
  color: #585850;
  font-size: 15px;
  font-weight: 800;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-7px);
  }
  75% {
    transform: translateX(7px);
  }
}

@media (max-width: 360px) {
  .entry-panel {
    padding-right: 22px;
    padding-left: 22px;
  }

  #accessCode,
  .enter-button {
    min-height: 68px;
    border-radius: 22px;
  }

  .enter-button {
    font-size: 25px;
  }
}

@media (min-width: 700px) {
  body {
    padding: 24px 0;
  }

  .phone-stage {
    min-height: calc(100svh - 48px);
    border-radius: 28px;
  }

  .app-shell {
    height: calc(100svh - 48px);
    min-height: calc(100svh - 48px);
  }
}
