body.page .fmt-app, .fmt-app * { box-sizing: border-box; }
.fmt-app {
  max-width: 920px;
  margin: 0 auto;
  padding: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111827;
}
.fmt-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:#111827;
  color:#fff;
  border-radius:22px;
  padding:20px;
  margin:12px 0;
}
.fmt-header h1 { margin:0 0 6px; font-size:28px; }
.fmt-header p { margin:0; opacity:.85; }
.fmt-badge {
  background:#dc2626;
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
  white-space:nowrap;
}
.fmt-card {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  padding:18px;
  margin:14px 0;
}
.fmt-card h2 { margin:0 0 12px; font-size:22px; }
.fmt-app input, .fmt-app select {
  width:100%;
  border:1px solid #d1d5db;
  border-radius:14px;
  padding:13px;
  margin-top:6px;
  font-size:16px;
  background:#fff;
}
.fmt-app button {
  border:0;
  border-radius:14px;
  padding:14px 16px;
  margin:8px 0;
  font-size:16px;
  font-weight:800;
  background:#111827;
  color:#fff;
  cursor:pointer;
}
.fmt-app button:hover { opacity:.92; }
.fmt-secondary { background:#6b7280 !important; }
.fmt-disabled { background:#9ca3af !important; cursor:not-allowed !important; }
.fmt-grid2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.fmt-check { display:flex; gap:10px; align-items:center; margin-top:12px; font-weight:700; }
.fmt-check input { width:auto; margin:0; transform:scale(1.2); }
.fmt-muted, .fmt-msg { color:#6b7280; font-size:14px; }
.fmt-date-tools { display:grid; grid-template-columns:1fr auto auto; gap:10px; align-items:end; }
.fmt-chips { display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.fmt-chip {
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
  background:#f3f4f6;
  padding:8px 11px;
  font-weight:800;
}
.fmt-chip button {
  margin:0;
  padding:1px 7px;
  border-radius:999px;
  background:#dc2626;
  font-size:12px;
}
.fmt-seat-tabs { display:flex; gap:10px; margin:8px 0 12px; }
.fmt-tab { background:#6b7280 !important; flex:1; }
.fmt-tab.active { background:#111827 !important; }
.fmt-seat-map-wrap {
  position:relative;
  width:100%;
  max-width:780px;
  margin:0 auto;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #e5e7eb;
}
.fmt-seat-map-wrap img {
  display:block;
  width:100%;
  height:auto;
}
.fmt-seat-overlay {
  position:absolute;
  inset:0;
}
.fmt-seat-btn {
  position:absolute;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  line-height:1 !important;
  box-sizing:border-box !important;
  appearance:none !important;
  -webkit-appearance:none !important;
  transform:translate(-50%, -50%);
  width:6.4%;
  aspect-ratio:1/1;
  border-radius:999px !important;
  margin:0 !important;
  padding:0 !important;
  color:#111827 !important;
  background:rgba(255,255,255,.94) !important;
  border:3px solid #16a34a !important;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
  font-size:clamp(11px, 1.45vw, 16px) !important;
}
.fmt-seat-btn.selected {
  background:#16a34a !important;
  color:#fff !important;
  border-color:#064e3b !important;
}
.fmt-seat-btn.unavailable {
  background:#e5e7eb !important;
  color:#6b7280 !important;
  border-color:#9ca3af !important;
  text-decoration:line-through;
}
.fmt-seat-legend { display:flex; flex-wrap:wrap; gap:14px; margin-top:12px; font-size:14px; }
.fmt-dot {
  display:inline-block;
  width:14px;
  height:14px;
  border-radius:50%;
  vertical-align:middle;
  margin-right:6px;
}
.fmt-dot.available { background:#16a34a; }
.fmt-dot.selected { background:#064e3b; }
.fmt-dot.unavailable { background:#9ca3af; }
.fmt-summary-row {
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid #e5e7eb;
  padding:9px 0;
  gap:12px;
}
.fmt-summary-row strong { min-width:140px; }
@media (max-width: 700px) {
  .fmt-grid2, .fmt-date-tools { grid-template-columns:1fr; }
  .fmt-header { align-items:flex-start; flex-direction:column; }
  .fmt-seat-map-wrap { max-width:100%; }
  .fmt-seat-btn { width:10.4%; font-size:12px !important; }
}


/* v0.2 calendar multi-date selector */
.fmt-calendar-head {
  display:grid;
  grid-template-columns: auto 1fr auto;
  gap:10px;
  align-items:center;
  margin: 8px 0 12px;
}
.fmt-calendar-head button {
  margin:0;
  white-space:nowrap;
}
.fmt-calendar-title {
  text-align:center;
  font-size:20px;
  font-weight:900;
}
.fmt-weekdays {
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:6px;
  margin-bottom:6px;
  color:#6b7280;
  font-size:13px;
  font-weight:900;
  text-align:center;
}
.fmt-calendar {
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:6px;
}
.fmt-day {
  min-height:54px;
  border:1px solid #e5e7eb !important;
  background:#fff !important;
  color:#111827 !important;
  border-radius:14px !important;
  margin:0 !important;
  padding:8px 4px !important;
  font-weight:900 !important;
  font-size:15px !important;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:2px;
}
.fmt-day small {
  display:block;
  color:#6b7280;
  font-size:10px;
  font-weight:700;
}
.fmt-day.outside {
  opacity:.25;
}
.fmt-day.selected {
  background:#111827 !important;
  color:#fff !important;
  border-color:#111827 !important;
}
.fmt-day.selected small {
  color:#e5e7eb;
}
.fmt-day.today {
  border-color:#dc2626 !important;
  box-shadow:0 0 0 2px rgba(220,38,38,.12);
}
.fmt-day.disabled {
  background:#f3f4f6 !important;
  color:#9ca3af !important;
  cursor:not-allowed !important;
}
.fmt-date-actions {
  margin-top:12px;
}
@media (max-width: 700px) {
  .fmt-calendar-head {
    grid-template-columns:1fr 1fr;
  }
  .fmt-calendar-title {
    grid-column:1 / -1;
    order:-1;
  }
  .fmt-day {
    min-height:46px;
    border-radius:11px !important;
    font-size:14px !important;
  }
  .fmt-weekdays {
    font-size:11px;
    gap:4px;
  }
  .fmt-calendar {
    gap:4px;
  }
}


/* v0.3 cleaner centered header and trip info above seats */
.fmt-header-centered {
  justify-content:center;
  text-align:center;
  background:linear-gradient(135deg,#111827,#1f2937);
}
.fmt-header-centered h1 {
  font-size:32px;
  letter-spacing:.2px;
}
.fmt-header-centered .fmt-badge {
  display:inline-block;
  margin-top:12px;
}
.fmt-trip-info {
  border:2px solid #e5e7eb;
  background:#f9fafb;
  border-radius:18px;
  padding:12px;
  margin:12px 0;
}
.fmt-trip-info h3 {
  margin:0 0 8px;
  font-size:18px;
}
.fmt-trip-pill {
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-radius:14px;
  padding:10px 12px;
  margin:8px 0;
  background:#fff;
  border:1px solid #e5e7eb;
  font-weight:800;
}
.fmt-trip-pill small {
  display:block;
  color:#6b7280;
  font-weight:700;
  margin-top:3px;
}
#fmt-return-fields {
  margin-top:12px;
}
@media (max-width:700px){
  .fmt-header-centered h1 { font-size:26px; }
  .fmt-trip-pill { flex-direction:column; }
}


/* v0.4 guided seat selection sections */
.fmt-seat-step {
  border:2px solid #e5e7eb;
  border-radius:20px;
  margin:14px 0;
  overflow:hidden;
  background:#f9fafb;
  transition: all .25s ease;
}
.fmt-seat-step.open {
  border-color:#111827;
  background:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}
.fmt-seat-step.done {
  border-color:#16a34a;
  background:#f0fdf4;
}
.fmt-seat-step-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px;
}
.fmt-seat-step-head h3 {
  margin:0 0 4px;
  font-size:20px;
}
.fmt-seat-step-head p {
  margin:0;
  color:#6b7280;
  font-weight:700;
}
.fmt-small-btn {
  width:auto !important;
  padding:10px 14px !important;
  margin:0 !important;
  font-size:14px !important;
}
.fmt-seat-body {
  padding:0 14px 14px;
  animation: fmtSlide .22s ease;
}
.fmt-seat-summary {
  margin:0 14px 14px;
  padding:12px;
  border-radius:16px;
  background:#fff;
  border:1px solid #bbf7d0;
  font-weight:800;
}
.fmt-seat-summary .fmt-summary-main {
  display:flex;
  justify-content:space-between;
  gap:12px;
}
.fmt-seat-summary small {
  display:block;
  color:#6b7280;
  margin-top:4px;
  font-weight:700;
}
@keyframes fmtSlide {
  from { opacity:0; transform:translateY(-6px); }
  to { opacity:1; transform:translateY(0); }
}
@media (max-width:700px){
  .fmt-seat-step-head {
    align-items:flex-start;
  }
  .fmt-seat-summary .fmt-summary-main {
    flex-direction:column;
  }
}


/* v0.5 mobile-first colorful UI polish */
.fmt-app {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  border-radius: 24px;
  padding-bottom: 22px;
}
.fmt-header-centered {
  background: linear-gradient(135deg, #991b1b 0%, #111827 55%, #1d4ed8 100%) !important;
  box-shadow: 0 14px 35px rgba(17,24,39,.18);
}
.fmt-card {
  border: 0 !important;
  box-shadow: 0 10px 26px rgba(15,23,42,.08) !important;
  overflow: hidden;
}
.fmt-card:nth-of-type(1) {
  border-top: 6px solid #dc2626 !important;
}
.fmt-card:nth-of-type(2) {
  border-top: 6px solid #2563eb !important;
}
.fmt-card:nth-of-type(3) {
  border-top: 6px solid #7c3aed !important;
}
.fmt-card:nth-of-type(4) {
  border-top: 6px solid #ea580c !important;
}
.fmt-card:nth-of-type(5) {
  border-top: 6px solid #16a34a !important;
}
.fmt-card h2 {
  display:flex;
  align-items:center;
  gap:10px;
}
.fmt-card h2::before {
  content:"";
  display:inline-block;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#dc2626;
}
.fmt-card:nth-of-type(2) h2::before { background:#2563eb; }
.fmt-card:nth-of-type(3) h2::before { background:#7c3aed; }
.fmt-card:nth-of-type(4) h2::before { background:#ea580c; }
.fmt-card:nth-of-type(5) h2::before { background:#16a34a; }

.fmt-app select,
.fmt-app input {
  border: 2px solid #e5e7eb !important;
  background: #ffffff !important;
  min-height: 48px;
}
.fmt-app select:focus,
.fmt-app input:focus {
  outline: none;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.fmt-app button {
  min-height: 48px;
}
.fmt-calendar {
  background:#ffffff;
  padding:8px;
  border-radius:18px;
  border:1px solid #e5e7eb;
}
.fmt-day.selected {
  background: linear-gradient(135deg,#dc2626,#991b1b) !important;
  border-color:#991b1b !important;
}
.fmt-day.today {
  border-color:#2563eb !important;
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}
.fmt-seat-step {
  background:#f8fafc !important;
}
.fmt-seat-step.open {
  border-color:#2563eb !important;
  background:#eff6ff !important;
}
.fmt-seat-step.done {
  border-color:#16a34a !important;
  background:#ecfdf5 !important;
}
.fmt-seat-step-head {
  background: rgba(255,255,255,.72);
}
.fmt-trip-info {
  background:#ffffff !important;
  border-color:#bfdbfe !important;
}
.fmt-trip-pill {
  border-left:5px solid #2563eb;
}
.fmt-seat-summary {
  background:#ffffff !important;
  border:2px solid #86efac !important;
}
.fmt-summary-row {
  background:#f9fafb;
  border:0 !important;
  border-radius:14px;
  padding:12px !important;
  margin:8px 0;
}
.fmt-summary-row:nth-child(even) {
  background:#eef2ff;
}

@media (max-width:700px){
  .fmt-app {
    padding: 8px;
    border-radius: 0;
  }
  .fmt-header {
    margin: 6px 0 10px;
    border-radius: 18px;
    padding: 16px 12px;
  }
  .fmt-header-centered h1 {
    font-size: 22px !important;
    line-height: 1.18;
  }
  .fmt-header p {
    font-size: 13px;
    line-height: 1.35;
  }
  .fmt-badge {
    font-size: 12px;
    padding: 7px 10px;
  }
  .fmt-card {
    padding: 14px !important;
    margin: 10px 0 !important;
    border-radius: 18px !important;
  }
  .fmt-card h2 {
    font-size: 19px !important;
    margin-bottom: 10px !important;
  }
  .fmt-grid2 {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .fmt-app label {
    font-size: 14px;
    font-weight: 800;
  }
  .fmt-app select,
  .fmt-app input {
    font-size: 15px !important;
    padding: 12px !important;
    min-height: 48px;
  }
  .fmt-calendar-head {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .fmt-calendar-title {
    grid-column: 1 / -1;
    order: -1;
    font-size: 18px !important;
    padding: 4px 0;
  }
  .fmt-calendar-head button {
    font-size: 13px !important;
    padding: 10px 8px !important;
    min-height: 42px;
  }
  .fmt-weekdays {
    font-size: 10px !important;
    gap: 3px !important;
  }
  .fmt-calendar {
    gap: 3px !important;
    padding: 5px !important;
  }
  .fmt-day {
    min-height: 42px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    padding: 5px 2px !important;
  }
  .fmt-day small {
    display:none !important;
  }
  .fmt-chip {
    font-size: 12px;
    padding: 7px 9px;
  }
  .fmt-seat-step-head {
    padding: 12px !important;
  }
  .fmt-seat-step-head h3 {
    font-size: 17px !important;
  }
  .fmt-seat-step-head p {
    font-size: 12px;
  }
  .fmt-small-btn {
    font-size: 12px !important;
    padding: 8px 10px !important;
    min-height: 38px !important;
  }
  .fmt-trip-info {
    padding: 10px !important;
    margin: 8px 0 !important;
  }
  .fmt-trip-info h3 {
    font-size: 15px !important;
  }
  .fmt-trip-pill {
    padding: 9px !important;
    font-size: 13px;
  }
  .fmt-seat-map-wrap {
    border-radius: 14px !important;
  }
  .fmt-seat-btn {
    width: 9.6% !important;
    font-size: 11px !important;
    border-width: 2px !important;
  }
  .fmt-seat-legend {
    font-size: 12px !important;
    gap: 8px !important;
  }
  .fmt-summary-row {
    flex-direction: column;
    gap: 3px !important;
    font-size: 14px;
  }
  .fmt-summary-row strong {
    min-width: 0 !important;
  }
}


/* v0.6 availability, full-date calendar, and random-seat option */
.fmt-day.full {
  background: #fee2e2 !important;
  color: #991b1b !important;
  border-color: #dc2626 !important;
}
.fmt-day.full small {
  color:#991b1b !important;
  font-weight:900;
}
.fmt-day.full::after {
  content:"Full";
  font-size:9px;
  font-weight:900;
  line-height:1;
}
.fmt-day.partial {
  background:#fff7ed !important;
  border-color:#fb923c !important;
}
.fmt-random-notice {
  border:2px solid #f59e0b;
  background:#fffbeb;
  color:#78350f;
  border-radius:18px;
  padding:14px;
  margin:14px 0;
}
.fmt-random-notice h3 {
  margin:0 0 8px;
  font-size:18px;
}
.fmt-random-notice p {
  margin:7px 0;
}
.fmt-random-choice {
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:10px;
  padding:10px;
  border-radius:14px;
  background:#fff;
}
.fmt-random-choice input {
  width:auto !important;
  margin-top:4px !important;
}
.fmt-seat-btn.random-mode {
  border-color:#f59e0b !important;
}
.fmt-dot.random { background:#f59e0b; }
.fmt-seat-step.random-ok {
  border-color:#f59e0b !important;
  background:#fffbeb !important;
}
@media (max-width:700px){
  .fmt-random-notice {
    padding:12px;
    font-size:13px;
  }
  .fmt-day.full::after {
    display:block;
    font-size:8px;
  }
}


/* v0.7 calendar availability colors */
.fmt-calendar-legend {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:10px 0 12px;
  padding:10px;
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:14px;
  font-size:13px;
  font-weight:800;
}
.fmt-cal-dot {
  display:inline-block;
  width:13px;
  height:13px;
  border-radius:50%;
  margin-right:5px;
  vertical-align:middle;
}
.fmt-cal-dot.cal-green { background:#16a34a; }
.fmt-cal-dot.cal-yellow { background:#f59e0b; }
.fmt-cal-dot.cal-red { background:#dc2626; }

.fmt-day.avail-green {
  background:#ecfdf5 !important;
  color:#064e3b !important;
  border-color:#86efac !important;
}
.fmt-day.avail-yellow {
  background:#fffbeb !important;
  color:#92400e !important;
  border-color:#f59e0b !important;
}
.fmt-day.avail-red,
.fmt-day.full {
  background:#fee2e2 !important;
  color:#991b1b !important;
  border-color:#dc2626 !important;
  cursor:not-allowed !important;
}
.fmt-day.avail-red small,
.fmt-day.full small {
  color:#991b1b !important;
}
.fmt-day.selected {
  background: linear-gradient(135deg,#111827,#374151) !important;
  color:#fff !important;
  border-color:#111827 !important;
}
.fmt-day.selected small {
  color:#e5e7eb !important;
}
.fmt-day.outside {
  opacity:.45;
}
@media (max-width:700px){
  .fmt-calendar-legend {
    font-size:11px;
    gap:7px;
    padding:8px;
  }
  .fmt-cal-dot {
    width:11px;
    height:11px;
  }
}


/* v0.9 random-assignment message moved into seat-selection area */
.fmt-checkout-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #93c5fd;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 800;
}

.fmt-random-notice {
  margin: 0 0 12px 0 !important;
  border: 2px solid #f59e0b !important;
  background: #fffbeb !important;
  color: #78350f !important;
  border-radius: 18px !important;
  padding: 14px !important;
}

.fmt-random-notice h3 {
  margin: 0 0 8px !important;
  font-size: 18px !important;
}

.fmt-random-notice p {
  margin: 6px 0 !important;
  line-height: 1.45;
}

.fmt-random-choice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #fde68a;
}

.fmt-random-choice input {
  width: auto !important;
  margin-top: 4px !important;
}

@media (max-width:700px){
  .fmt-checkout-note {
    font-size: 13px;
    padding: 10px 12px;
  }
  .fmt-random-notice {
    padding: 12px !important;
    border-radius: 16px !important;
  }
  .fmt-random-notice h3 {
    font-size: 16px !important;
  }
  .fmt-random-notice p {
    font-size: 13px !important;
  }
}


/* v1.0 final seat legend/colors */
.fmt-seat-btn {
  background: #dcfce7 !important;
  border-color: #16a34a !important;
  color: #064e3b !important;
}
.fmt-seat-btn.selected {
  background: #2563eb !important;
  border-color: #1e3a8a !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(37,99,235,.18), 0 2px 8px rgba(0,0,0,.25) !important;
}
.fmt-seat-btn.unavailable {
  background: #fee2e2 !important;
  border-color: #dc2626 !important;
  color: #991b1b !important;
  text-decoration: line-through;
}
.fmt-seat-btn.random-mode {
  border-color: #dc2626 !important;
}
.fmt-dot.available { background:#16a34a !important; }
.fmt-dot.selected { background:#2563eb !important; }
.fmt-dot.unavailable { background:#dc2626 !important; }
.fmt-dot.random { display:none !important; }

.fmt-random-notice {
  border-color: #f59e0b !important;
  background: #fff7ed !important;
  color: #7c2d12 !important;
}
.fmt-random-notice h3 {
  color: #9a3412 !important;
}


/* v1.2 ticket preview section and customer-friendly buttons */
.fmt-random-action {
  width: 100%;
  background: #f59e0b !important;
  color: #111827 !important;
  border: 0 !important;
  margin-top: 10px !important;
}
.fmt-random-action.active {
  background: #16a34a !important;
  color: #ffffff !important;
}
.fmt-good {
  background: #16a34a !important;
}
.fmt-ticket-preview {
  margin-top: 14px;
  border: 2px solid #dbeafe;
  background: #eff6ff;
  border-radius: 20px;
  padding: 14px;
}
.fmt-ticket-preview h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #1e3a8a;
}
.fmt-preview-list {
  display: grid;
  gap: 10px;
}
.fmt-preview-ticket {
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-left: 6px solid #2563eb;
  border-radius: 16px;
  padding: 12px;
}
.fmt-preview-ticket strong {
  display: block;
  font-size: 15px;
  color: #111827;
}
.fmt-preview-ticket span {
  display: block;
  color: #4b5563;
  font-size: 13px;
  margin-top: 3px;
}
.fmt-preview-ticket .fmt-seat-line {
  color: #1e3a8a;
  font-weight: 900;
}
.fmt-price-note {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #93c5fd;
  color: #1e3a8a;
  font-size: 13px;
  font-weight: 800;
}
@media (max-width:700px){
  .fmt-ticket-preview {
    padding: 12px;
    border-radius: 18px;
  }
  .fmt-preview-ticket {
    padding: 10px;
  }
  .fmt-preview-ticket strong {
    font-size: 14px;
  }
}


/* v1.3 confirmation and active checkout button colors */
#fmt-confirm-preview {
  background: #dc2626 !important;
  color: #ffffff !important;
}
#fmt-confirm-preview.confirmed {
  background: #16a34a !important;
  color: #ffffff !important;
}
.fmt-checkout-btn {
  background: #dc2626 !important;
  color: #ffffff !important;
  width: 100%;
  font-size: 18px !important;
  margin-top: 10px !important;
}
.fmt-checkout-btn.loading {
  background: #991b1b !important;
  opacity: .85;
}
.fmt-checkout-error {
  margin-top: 10px;
  padding: 12px;
  background: #fee2e2;
  border: 1px solid #dc2626;
  color: #991b1b;
  border-radius: 14px;
  font-weight: 800;
}


/* v1.8 calendar visibility fix */
.fmt-calendar {
  min-height: 300px;
  align-items: stretch;
}
.fmt-calendar .fmt-day {
  display: flex !important;
  visibility: visible !important;
  opacity: 1;
}
.fmt-calendar .fmt-day.outside {
  opacity: .45;
}
@media (max-width:700px){
  .fmt-calendar {
    min-height: 250px;
  }
}


/* v1.9 calendar: color code only, no seat count labels */
.fmt-day small {
  font-size: 10px;
}
.fmt-seat-btn.selected,
.fmt-seat-step.done .fmt-seat-summary {
  border-color: #2563eb !important;
}
.fmt-seat-step.done .fmt-seat-summary {
  background: #eff6ff !important;
}


/* v2.0: seats already in customer's cart stay blue */
.fmt-seat-btn.selected[title="Already in your cart"] {
  background:#2563eb !important;
  border-color:#1e3a8a !important;
  color:#fff !important;
}


/* v2.2 final public page header cleanup */
body.page .entry-title,
body.page h1.entry-title,
body .page-title,
body h1.page-title {
  display: none !important;
}

.fmt-header-centered {
  background: linear-gradient(135deg, rgba(153,27,27,.82) 0%, rgba(17,24,39,.76) 55%, rgba(29,78,216,.82) 100%) !important;
  color: #ffffff !important;
}

.fmt-header-centered h1,
.fmt-header-centered p {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.fmt-header-centered h1 {
  font-weight: 900;
}

.fmt-header-centered p {
  opacity: .96 !important;
}

.fmt-badge {
  display: none !important;
}




/* v2.8 seat-map cleanup */
.fmt-seat-map-wrap {
  max-width: 760px;
}

@media (max-width: 700px) {
  .fmt-seat-map-wrap {
    max-width: 390px !important;
    width: 100% !important;
    aspect-ratio: 494 / 1423 !important;
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .fmt-seat-map-wrap > img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    transform: none !important;
  }

  .fmt-seat-map-wrap > .fmt-seat-overlay {
    position: absolute !important;
    inset: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .fmt-seat-map-wrap .fmt-seat-btn {
    transform: translate(-50%, -50%) !important;
    width: 8.8% !important;
    min-width: 28px !important;
    min-height: 28px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    border-width: 2px !important;
    padding: 0 !important;
  }
}


/* v2.8.4 force mobile seat button size override */
@media (max-width: 700px) {
  .fmt-seat-map-wrap .fmt-seat-btn {
    width:10.4% !important;
    font-size:12px !important;
  }
}


/* v2.8.5 final seat-map sizing/alignment override */
.fmt-seat-map-wrap {
  height: auto !important;
  aspect-ratio: auto !important;
}
.fmt-seat-map-wrap > img {
  height: auto !important;
}
.fmt-seat-map-wrap > .fmt-seat-overlay {
  position: absolute !important;
  inset: 0 !important;
}
.fmt-seat-map-wrap .fmt-seat-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
  padding: 0 !important;
}
@media (max-width: 700px) {
  .fmt-seat-map-wrap .fmt-seat-btn {
    width: 12.0% !important;
    min-width: 34px !important;
    min-height: 34px !important;
    font-size: 13px !important;
    border-width: 2px !important;
  }
}

/* v2.8.13 calendar disabled-label cleanup */
.fmt-day.disabled.full::after,
.fmt-day.avail-red.disabled::after {
  content:"" !important;
  display:none !important;
}
.fmt-day small:empty {
  display:none !important;
}
