.reception {
  background: #f8fbff;
}
.desktop-header {
  min-height: 69px;
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.brand,
.header-details {
  display: flex;
  align-items: center;
  gap: 16px;
}
.desktop-header .logo {
  background: var(--blue);
  color: white;
  width: 42px;
  height: 42px;
}
.header-details {
  font-size: 14px;
  color: #425474;
}
.header-details > span {
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: 7px;
}
.reception main {
  max-width: 1500px;
  padding: 28px 30px 50px;
  min-height: calc(100vh - 70px);
}
.reception h1 {
  font-size: 34px;
}
.reception h2 {
  font-size: 23px;
}
.reception .intro {
  font-size: 18px;
}
.page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.stat {
  margin: 0;
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.stat strong {
  font-size: 28px;
  display: block;
  line-height: 1.2;
}
.stat .avatar {
  width: 60px;
  height: 60px;
}
.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.stat .avatar.green {
  background: #e3f7eb;
  color: var(--green);
}
.stat .avatar.amber {
  background: #fff1da;
  color: #c87900;
}
.toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.search-input {
  flex: 1;
  min-width: 210px;
  max-width: 520px;
  border: 1px solid #cbd8ec;
  border-radius: 7px;
  padding: 12px 15px;
  font: inherit;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filters button {
  border-radius: 22px;
  min-height: 40px;
  padding: 8px 16px;
  font-size: 14px;
}
.booking-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow-x: auto;
}
.booking-table th {
  text-align: left;
  background: #f3f7fc;
  font-weight: 600;
  padding: 14px 18px;
  white-space: nowrap;
}
.booking-table td {
  border-top: 1px solid var(--line);
  padding: 14px 18px;
  vertical-align: middle;
}
.booking-table tbody tr:hover {
  background: #f1f7ff;
}
.booking-table .avatar {
  width: 38px;
  height: 38px;
  font-size: 15px;
}
.booking-table td:first-child {
  min-width: 200px;
}
.booking-table td:last-child {
  min-width: 160px;
}
.booking-table button {
  min-height: 38px;
  padding: 8px 18px;
  white-space: nowrap;
}
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  margin-top: 20px;
}
.entry-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0;
}
.entry-action {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.entry-action h2 {
  margin-top: 0;
}
.entry-action p {
  color: var(--muted);
  flex: 1;
}
.detail-grid > .card {
  margin-top: 0;
}
.detail-grid .card h2 {
  margin-top: 0;
}
.detail-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px;
  font-size: 14px;
}
.detail-summary span {
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.detail-summary span:last-child {
  border: 0;
}
.workflow {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 12px;
}
.workflow > span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.step-dot {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #e8edf5;
}
.step-dot.active {
  background: var(--blue);
  color: #fff;
}
.step-dot.done {
  background: var(--green);
  color: #fff;
}
.reception .guest-row {
  border: 1px solid var(--line);
  border-radius: 7px;
  margin-bottom: 10px;
}
.reception .guest-row .link {
  white-space: nowrap;
}
.reception #notice:not([hidden]) {
  max-width: 1440px;
}
.monitor-status {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}
.qr-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 20px;
}
.qr-image {
  max-width: 260px;
  margin: auto;
  background: #fff;
}
.qr-image svg {
  display: block;
  width: 100%;
  height: auto;
}
.qr-layout .card {
  margin: 0;
}
.qr-layout ol {
  padding-left: 24px;
  line-height: 1.8;
  color: var(--muted);
}
.qr-layout h3 {
  font-size: 23px;
}
.qr-expiry {
  font-size: 14px;
  color: #996000;
  text-align: center;
}
@media (max-width: 760px) {
  .entry-actions {
    grid-template-columns: 1fr;
  }
}
.reception dialog {
  width: 850px;
  max-width: 94vw;
}
.login {
  max-width: 450px;
  margin: 60px auto;
}
.login h1 {
  font-size: 30px;
}
.login .field {
  margin-bottom: 20px;
}
.empty-state {
  text-align: center;
  padding: 55px 20px;
  color: var(--muted);
}
.verification-detail {
  white-space: normal;
}
.booking-caption {
  color: var(--muted);
  font-size: 14px;
}
.reception .notice {
  align-items: center;
}
.reception .document-full .card {
  white-space: normal;
}
@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .reception main {
    padding: 22px 18px;
  }
  .desktop-header {
    padding: 12px 18px;
  }
  .header-details > span {
    display: none;
  }
  .qr-layout {
    grid-template-columns: 1fr;
  }
  .workflow {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .page-heading {
    flex-direction: column;
  }
  .reception h1 {
    font-size: 29px;
  }
  .reception .guest-row {
    flex-wrap: wrap;
  }
  .qr-image {
    max-width: 230px;
  }
}
@media (max-width: 420px) {
  .stat {
    padding: 14px;
    gap: 10px;
  }
  .stat .avatar {
    width: 40px;
    height: 40px;
  }
  .stat strong {
    font-size: 22px;
  }
  .brand {
    gap: 8px;
    font-size: 14px;
  }
  .desktop-header {
    gap: 8px;
  }
  .stats {
    gap: 10px;
  }
}
