/* =========================================
   MEMBER LOGIN — CONTEMPORARY STYLE
   Matches Aspirezone theme
========================================= */

:root{
  --primary:#0f4c81;
  --primary-2:#0b3f6b;
  --accent:#f6b300;
  --bg:#f4f7fb;
  --card:#ffffff;
  --text:#1f2d3d;
  --border:#d9e2ec;
  --shadow:0 18px 40px rgba(11,63,107,0.18);
  --radius:14px;
  font-family:"Poppins",sans-serif;
}

/* ===== Page Background ===== */

/* ===== Wrapper ===== */

.login-wrapper{
  width:100%;
  padding:20px;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* ===== Card ===== */

.login-card{
  width:100%;
  max-width:420px;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:36px 34px;
  position:relative;
  z-index:2;
}

/* ===== Brand Section ===== */

.brand-section{
  text-align:center;
  margin-bottom:26px;
}

.brand-section img{
  width:64px;
  margin-bottom:10px;
}

.brand-section h2{
  margin:0;
  font-size:1.6rem;
  color:var(--primary-2);
  font-weight:700;
}

.brand-section p{
  margin-top:6px;
  font-size:0.9rem;
  color:#6b7c93;
}

/* ===== Form ===== */

.form-group{
  margin-bottom:18px;
}

.form-group label{
  display:block;
  font-size:0.85rem;
  font-weight:600;
  margin-bottom:6px;
  color:var(--primary-2);
}

.form-group input{
  width:100%;
  padding:11px 12px;
  border-radius:8px;
  border:1px solid var(--border);
  font-size:0.95rem;
  transition:all .2s ease;
}

/* Focus effect */
.form-group input:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(15,76,129,0.12);
}

/* ===== Captcha ===== */

.captcha-box{
  display:flex;
  justify-content:center;
  margin:16px 0 10px;
}

/* ===== Button ===== */

.login-btn{
  width:100%;
  padding:12px;
  border:none;
  border-radius:999px;
  background:linear-gradient(
      90deg,
      var(--primary),
      var(--primary-2)
  );
  color:#fff;
  font-weight:600;
  font-size:0.95rem;
  cursor:pointer;
  transition:.25s;
}

.login-btn:hover{
  background:linear-gradient(
      90deg,
      var(--primary-2),
      var(--primary)
  );
  transform:translateY(-1px);
}

/* ===== Footer Links ===== */

.login-footer{
  text-align:center;
  margin-top:18px;
  font-size:0.85rem;
}

.login-footer a{
  color:var(--primary);
  text-decoration:none;
  font-weight:500;
}

.login-footer a:hover{
  text-decoration:underline;
}

.login-footer span{
  margin:0 6px;
  color:#999;
}

/* ===== Mobile Responsive ===== */

@media(max-width:480px){

  .login-card{
    padding:28px 22px;
  }

  .brand-section h2{
    font-size:1.4rem;
  }

}

/* =========================================
   MEMBER PORTAL — AUTH EXTENSIONS
   Uses same base theme as admin
========================================= */

/* Slight background variation */
.member-auth-main{
  min-height: calc(100vh - var(--member-body-padding-top-desktop) - 72px);
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(135deg,#eaf4ff 0%,#6f9ac4 45%,#c3e0ff 100%);
}

.member-login-main {
  padding-top: 6px;
  padding-bottom: 6px;
}

.member-login-card {
  padding: 22px 24px;
}

.member-login-card .auth-field {
  margin-bottom: 12px;
}

.member-login-card .auth-subtitle {
  margin-bottom: 14px;
}

.member-login-card .auth-footer {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .member-auth-main {
    min-height: calc(100vh - var(--member-body-padding-top-mobile) - 72px);
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .member-login-card {
    padding: 18px 18px;
  }
}

/* Card refinement */
.member-auth-card{

  border-top: 4px solid var(--accent);

  box-shadow:
    0 18px 40px rgba(11,63,107,0.18),
    0 2px 6px rgba(0,0,0,0.06);
}

/* Title tweak */
.member-auth-card h2{
  color: var(--primary);
}

/* Submit button accent blend */
.member-auth-submit{

  background:
    linear-gradient(
      90deg,
      var(--primary),
      var(--primary-2)
    );

  border-radius: 999px;
  letter-spacing: .3px;
}

.member-auth-submit:hover{

  background:
    linear-gradient(
      90deg,
      var(--primary-2),
      var(--primary)
    );

  transform: translateY(-1px);
}

/* Captcha spacing */
.captcha-wrap{
  display:flex;
  justify-content:center;
  margin: 12px 0 8px;
}

/* Footer links refinement */
.member-auth-card .auth-footer a{
  color: var(--primary);
  font-weight: 500;
}

.member-auth-card .auth-footer a:hover{
  color: var(--primary-2);
}

/* Force red asterisk in auth forms */
/* Only auth pages */
.auth-label .required-star{
    color:#dc2626 !important;
}

.member-auth-card .auth-field .auth-label .auth-label-note{
  display: block;
  margin-top: 2px;
  color:  orangered !important;
  /* color: var(--primary-2) !important; */
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  opacity: 0.95;
}

.member-dashboard-inner .auth-label-note{
  display: block;
  margin-top: 2px;
  color:  orangered !important;
  /* color: var(--primary-2) !important; */
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  opacity: 0.95;
}

#editProfileModal .auth-label-note{
  display: block;
  margin-top: 2px;
  color: orangered !important;
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  opacity: 0.95;
}
.member-auth-card .form-check-input{
  border: 1.8px solid var(--primary) !important;
  box-shadow: none;
}

.member-auth-card .form-check-input:focus{
  border-color: var(--primary-2) !important;
  box-shadow: 0 0 0 0.15rem rgba(15,76,129,0.2) !important;
}

.member-auth-card .form-check-input:checked{
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.text-danger{
  color:#dc2626;
  font-size:0.8rem;
  display:block;
  margin-top:3px;
}

/* ==============================
   Member Stat Card Header
============================== */

.stat-card-header {
  background: linear-gradient(90deg, #1073ca, #17599c);
    color: #ffffff;
    font-weight: 600;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 76, 129, 0.18);
    letter-spacing: 0.4px;
    font-size: 1.2rem;
}

.member-stat-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.member-stat-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.status-card-body-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.status-card-body-center .progress {
  width: 85%;
  max-width: 280px;
  height: 8px;
  background-color: #d6e6f7;
  border-radius: 999px;
}

.status-card-body-center .status-progress-track {
  width: 85%;
  max-width: 280px;
  height: 8px;
  background: #d6e6f7;
  border-radius: 999px;
  overflow: hidden;
}

.member-stat-card .status-progress-track {
  width: 85%;
  max-width: 280px;
  height: 8px;
  background: #d6e6f7;
  border-radius: 999px;
  overflow: hidden;
}

.status-card-body-center .status-progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.member-stat-card .status-progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.25s ease;
}


/* =====================================
   MEMBER DASHBOARD FULL WIDTH LAYOUT
===================================== */

.member-dashboard-wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 992px) {
    .member-dashboard-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ================================
   MEMBER DASHBOARD WIDTH CONTROL
================================ */

.member-dashboard-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.member-dashboard-inner {
    width: 75%;
    max-width: 1400px;
}

.member-welcome-banner {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  border-radius: 12px;
  overflow: hidden;
}

.member-welcome-banner .card-body {
  min-height: 74px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.member-welcome-banner h4 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .member-dashboard-inner {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .member-dashboard-inner {
        width: 95%;
    }

  .member-welcome-banner .card-body {
    min-height: 68px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .member-welcome-banner h4 {
    font-size: 1.05rem;
  }
}

/* =====================================
   MEMBER DASHBOARD MODERN BACKGROUND
===================================== */

body {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(15, 76, 129, 0.08),
            transparent 40%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(246, 179, 0, 0.08),
            transparent 40%
        ),
        linear-gradient(
            180deg,
            #bbd5ef 0%,
            #9db7d9 60%,
            #39618e 100%
        );

    background-attachment: fixed;
}

.profile-edit-trigger {
    color: #c4c138;
    text-decoration: none;
    padding: 0;
    font-weight: 500;
}

.profile-edit-trigger:hover {
    color: #ffffff;
    text-decoration: underline;
}

.profile-approval-tag {
    background: #f6b300;
    color: #4a2f00;
    font-weight: 600;
}

.profile-update-admin-card {
    border-left: 4px solid #f6b300;
    background: #fff8e8;
}

.member-section-header {
  /* background: linear-gradient(90deg, var(--primary), var(--primary-2)); */
  background: linear-gradient(90deg,rgb(15, 100, 180), rgb(19, 67, 87));
  color: #ffffff;
  border-bottom: 1px solid rgba(11, 63, 107, 0.24);
}

.payment-history-head th {
  background: linear-gradient(90deg, #1073ca, #17599c);
  color: #ffffff;
  font-weight: 600;
  border-top: 1px solid rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  border-right: 1px solid rgba(0, 0, 0, 0);
}

.payment-history-head th:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0);
}

.payment-history-header {
  background: linear-gradient(90deg, #f7fbff, #eaf3ff);
  color: #0b3f6b;
  border: 1px solid #c7d9ee;
  border-left: 5px solid #1073ca;
  border-bottom: 1px solid #b8d0ea;
  letter-spacing: 0.2px;
}

.payment-history-wrap {
  border: 1px solid #c7d9ee;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.payment-history-table {
  border-collapse: separate;
  border-spacing: 0;
}

.payment-history-table tbody td {
  background: linear-gradient(180deg, #f8fbff 0%, #e4ebf3 100%);
  color: #1f3349;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  border-right: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(160, 180, 205, 0.18);
}

.payment-history-table tbody td:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.payment-history-table tbody td:last-child {
  border-right: 0;
}

.payment-history-table tbody tr:hover td {
  background: linear-gradient(180deg, #edf5ff 0%, #dcecff 100%);
}

.payment-history-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.payment-history-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.payment-history-table tbody tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

/* Tariff terms block */
.tariff-summary-note {
    font-weight: 600;
    color: #123a5b !important;
}

.tariff-table-wrap {
    width: 70%;
    margin-right: auto;
    border: 1px solid #d9e6f2;
    border-left: 5px solid #0f4c81;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 8px 24px rgba(11, 63, 107, 0.08);
    overflow: hidden;
}

.tariff-table thead th {
    background: linear-gradient(90deg, #e6f2fa, #f2f8fc);
    color: #0b3f6b;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.tariff-table tbody td {
    color: #1f3349;
    font-size: 0.95rem;
}

.tariff-terms-card {
    width: 70%;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #d9e6f2;
    border-left: 5px solid #0f4c81;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(11, 63, 107, 0.08);
    padding: 16px 18px;
}

.tariff-terms-header {
    font-weight: 700;
    color: #0b3f6b;
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.tariff-terms-list {
    margin-left: 18px;
    color: #24384f;
    line-height: 1.6;
    font-size: 0.93rem;
}

.tariff-terms-list li {
    margin-bottom: 6px;
}

@media (max-width: 992px) {
    .tariff-table-wrap {
        width: 100%;
    }

    .tariff-terms-card {
        width: 100%;
    }
}

/* Member dashboard seat card value emphasis */
.seat-number-value {
  font-size: 2.4rem;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .seat-number-value {
    font-size: 1.9rem;
    }
}

/* =====================================
   SEAT LAYOUT - THUMBNAIL IN CARD
===================================== */
.seat-thumbnail-wrap {
  cursor: pointer;
  border: 1px solid #d0dfe9;
  border-radius: 10px;
  background: linear-gradient(135deg, #f4f8fc 0%, #eaf1f8 100%);
  padding: 10px 8px 6px;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
  max-width: 268px;
  margin: 0 auto;
}

.seat-thumbnail-wrap:hover {
  border-color: #8bb8da;
  box-shadow: 0 4px 16px rgba(16, 115, 202, 0.13);
}

.seat-thumb-grid {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 1.5px;
  aspect-ratio: 2 / 1;
}

.seat-thumb-cell {
  background: #cdd8e2;
  border-radius: 2px;
  min-width: 0;
  min-height: 0;
}

.seat-thumb-cell.mine {
  background: #2f9e44;
  box-shadow: 0 0 4px rgba(47, 158, 68, 0.6);
  animation: seat-thumb-pulse 1.8s ease-in-out infinite;
}

.seat-thumb-left-shift-two {
  transform: translateX(-220%);
}

@keyframes seat-thumb-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(47, 158, 68, 0.6); }
  50% { box-shadow: 0 0 8px rgba(47, 158, 68, 0.95); }
}

.seat-thumb-label {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1073ca;
  letter-spacing: 0.3px;
}

/* =====================================
   SEAT LAYOUT - FULL MODAL
===================================== */
.seat-layout-modal-content {
  border: none;
  border-radius: 14px;
  overflow: hidden;
}

.seat-layout-modal-header {
  background: linear-gradient(90deg, #1073ca, #17599c);
  color: #fff;
  border-bottom: none;
  padding: 14px 20px;
}

.seat-layout-modal-header .modal-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.seat-layout-modal-body {
  background: linear-gradient(160deg, #f0f5fa 0%, #e4ecf4 100%);
  padding: 24px 20px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Grid container */
.seat-layout-container {
  display: grid;
  grid-template-columns: repeat(18, minmax(36px, 1fr));
  grid-template-rows: repeat(9, auto);
  gap: 6px;
  /* min-width: 660px; */
  min-width: 680px;
  max-width: 1020px;
  margin: 0 auto;
}

/* Individual seat cell */
.seat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 6px 2px;
  min-height: 38px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.seat-cell .seat-num {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.seat-mine .seat-num {
  display: inline-block;
  transform: scale(1.2);
  transform-origin: center;
}

.seat-cell .seat-name {
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 2px;
  max-width: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Greyed out seat */
.seat-grey {
  background: #d5dde6;
  color: #8a96a3;
  border: 1px solid #c3cdd7;
}

/* Member's highlighted seat */
.seat-mine {
  background: linear-gradient(135deg, #2f9e44 0%, #1f7a34 100%);
  color: #fff;
  border: 2px solid #1b5e2d;
  box-shadow: 0 0 10px rgba(47, 158, 68, 0.45), 0 2px 8px rgba(47, 158, 68, 0.25);
  transform: scale(1.1);
  z-index: 2;
  animation: seat-glow 2s ease-in-out infinite;
}

.seat-left-shift-two {
  transform: translateX(-84px);
}

.seat-mine.seat-left-shift-two {
  transform: translateX(-84px) scale(1.1);
}

@keyframes seat-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(47, 158, 68, 0.45), 0 2px 8px rgba(47, 158, 68, 0.25); }
  50% { box-shadow: 0 0 18px rgba(47, 158, 68, 0.7), 0 4px 14px rgba(47, 158, 68, 0.4); }
}

/* Landmark labels */
.seat-landmark {
  font-size: 0.6rem;
  font-weight: 700;
  color: #6b7d8e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: center;
  pointer-events: none;
}

.seat-landmark-entrance {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  color: #1f4e79;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  padding-right: 0;
}

.seat-landmark-entrance::after {
  content: "";
  width: 108px;
  height: 10px;
  margin-left: -18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f4e79 0%, #1f4e79 100%);
  box-shadow: 0 0 0 1px rgba(74, 48, 25, 0.08);
  clip-path: polygon(0 36%, 84% 36%, 84% 14%, 100% 50%, 84% 86%, 84% 64%, 0 64%);
}

.seat-landmark-entrance::before {
  content: none;
}

.seat-landmark-pantry {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #1f4e79;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  line-height: 1.15;
  padding-right: 14px;
}

.seat-landmark-pantry .pantry-icon {
  /* font-size: 1.29rem; */
  font-size: 2rem;
  margin-right: 0;
  line-height: 1;
  color: inherit;
}

.seat-landmark-pantry .pantry-text {
  display: inline-block;
  text-align: right;
}

.seat-landmark-pantry .pantry-indent {
  display: inline-block;
  padding-left: 2.2em;
}

.seat-landmark-pantry::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% + 1.75em);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #1f4e79;
}

.seat-landmark-conf {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.conf-room-box {
  width: 78px;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 2px solid #111111;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.conf-room-label {
  color: #111111;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.7px;
  text-align: center;
  text-transform: uppercase;
}

/* Legend */
.seat-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.78rem;
  color: #4a5c6d;
}

.seat-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.seat-legend-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.seat-legend-swatch.mine {
  background: linear-gradient(135deg, #2f9e44, #1f7a34);
  border: 1px solid #1b5e2d;
}

.seat-legend-swatch.grey {
  background: #d5dde6;
  border: 1px solid #c3cdd7;
}

/* =====================================
   SEAT LAYOUT - RESPONSIVE
===================================== */
@media (max-width: 768px) {
  .seat-layout-container {
    grid-template-columns: repeat(18, minmax(36px, 1fr));
    gap: 6px;
    width: auto;
    min-width: 730px;
    max-width: none;
    padding-left: 96px;
    padding-right: 12px;
    box-sizing: border-box;
  }

  .seat-cell {
    min-height: 38px;
    padding: 6px 2px;
    border-radius: 6px;
  }

  .seat-cell .seat-num {
    font-size: 0.72rem;
  }

  .seat-cell .seat-name {
    font-size: 0.55rem;
    max-width: 48px;
  }

  .seat-mine {
    transform: scale(1.05);
  }

  .seat-left-shift-two {
    transform: translateX(-84px);
  }

  .seat-mine.seat-left-shift-two {
    transform: translateX(-84px) scale(1.05);
  }

  .seat-thumb-left-shift-two {
    transform: translateX(-210%);
  }

  .seat-landmark {
    font-size: 0.5rem;
  }

  .seat-landmark-entrance {
    font-size: 0.62rem;
    gap: 1px;
  }

  .seat-landmark-pantry {
    font-size: 0.62rem;
    padding-right: 12px;
    gap: 3px;
  }

  .seat-landmark-pantry .pantry-icon {
    font-size: 1.12rem;
    margin-right: 0;
  }

  .seat-landmark-pantry::after {
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 11px;
  }

  .seat-landmark-conf {
    gap: 0;
  }

  .conf-room-box {
    width: 60px;
    padding: 4px;
  }

  .conf-room-label {
    font-size: 0.62rem;
  }

  .seat-landmark-entrance::after {
    width: 108px;
    height: 10px;
    margin-left: -18px;
  }

  .seat-layout-modal-body {
    padding: 14px 8px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .seat-layout-modal-body {
    padding: 10px 6px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .seat-layout-container {
    grid-template-columns: repeat(18, minmax(36px, 1fr));
    gap: 6px;
    width: auto;
    min-width: 730px;
    max-width: none;
    padding-left: 96px;
    padding-right: 10px;
    box-sizing: border-box;
  }

  .seat-cell {
    min-height: 38px;
    padding: 6px 2px;
  }

  .seat-cell .seat-num {
    font-size: 0.72rem;
  }

  .seat-cell .seat-name {
    display: none;
  }

  .seat-landmark-entrance {
    gap: 1px;
  }

  .seat-landmark-pantry {
    padding-right: 8px;
    gap: 2px;
  }

  .seat-landmark-pantry .pantry-icon {
    font-size: 1.02rem;
    margin-right: 0;
  }

  .seat-landmark-pantry::after {
    right: 1px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .seat-landmark-conf {
    gap: 0;
  }

  .conf-room-box {
    width: 46px;
    padding: 3px;
  }

  .conf-room-label {
    font-size: 0.72rem;
  }

  .seat-landmark-entrance::after {
    width: 108px;
    height: 10px;
    margin-left: -18px;
  }

  .seat-left-shift-two {
    transform: translateX(-84px);
  }

  .seat-mine.seat-left-shift-two {
    transform: translateX(-84px) scale(1.05);
  }

  .seat-thumb-left-shift-two {
    transform: translateX(-200%);
  }

  .seat-legend {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.72rem;
  }
}
