/* AquaTrack tema — havuz-yonetim.html ile uyumlu */
:root {
  --navy: #0a1628;
  --navy2: #0f2147;
  --pool: #0369a1;
  --pool-light: #38bdf8;
  --pool-pale: #e0f2fe;
  --accent: #06d6a0;
  --accent2: #ffd60a;
  --danger: #ef4444;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f1f5f9;
  --white: #ffffff;
  --sidebar-w: 260px;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(3, 105, 161, 0.1);
}

* {
  box-sizing: border-box;
}

body.at-app {
  font-family: "Sora", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  margin: 0;
}

/* ── SIDEBAR ── */
#atSidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.at-sidebar-logo {
  padding: 22px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.at-logo-image {
  display: block;
  width: min(200px, 100%);
  height: auto;
}

.at-sidebar-nav {
  padding: 14px 10px;
  flex: 1;
  overflow-y: auto;
}

.at-nav-section {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 12px 6px;
}

.at-nav-item {
  margin-bottom: 2px;
}

.at-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55) !important;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.18s;
  text-decoration: none;
}

.at-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.9;
}

.at-nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
}

.at-nav-link.active {
  color: #fff !important;
  background: var(--pool) !important;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.4);
}

.at-sidebar-footer {
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.at-user-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.at-mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.at-mode-pill.admin {
  background: rgba(255, 214, 10, 0.12);
  color: var(--accent2);
  border-color: rgba(255, 214, 10, 0.28);
}

.at-logout {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.at-logout:hover {
  color: #fff;
}

/* ── MAIN ── */
#atMain {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

.at-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.at-topbar-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.at-topbar-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.at-page {
  padding: 28px;
}

/* ── CARDS / PANELS ── */
body.at-app .at-panel,
body.at-app .card.at-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.at-card-h {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.at-card-h .title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.at-card-body {
  padding: 20px;
}

.at-page-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.at-page-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
}

/* ── STAT GRID ── */
.at-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.at-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.at-stat-card .label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.at-stat-card .value {
  font-size: 1.45rem;
  font-weight: 700;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: var(--pool);
}

.at-mini-bars {
  display: grid;
  gap: 10px;
}

.at-mini-bar-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
}

.at-mini-bar-row .name {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.at-mini-bar-row .bar {
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.at-mini-bar-row .bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
}

.at-mini-bar-row .val {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.at-mini-bars--date .at-mini-bar-row {
  grid-template-columns: 120px minmax(0, 1fr) 24px;
  gap: 12px;
}

.at-mini-bars--date .at-mini-bar-row .name {
  white-space: nowrap;
}

/* ── CALENDAR (PHP takvim) ── */
.at-cal-wrap {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.at-cal-controls {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
}

.at-cal-controls .week-label {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.at-cal-controls .sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.at-cal-controls input[type="month"],
.at-cal-controls input[type="date"] {
  color: #fff !important;
}

.at-cal-controls input[type="month"]::-webkit-calendar-picker-indicator,
.at-cal-controls input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.75;
}

.at-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: #fafbfc;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.at-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.at-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.at-cal-scroll {
  overflow-x: auto;
}

table.at-cal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

table.at-cal-table th {
  background: var(--navy2);
  color: white;
  text-align: center;
  padding: 10px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

table.at-cal-table th.th-lane {
  background: var(--navy);
  text-align: left;
  padding-left: 14px;
  min-width: 100px;
}

table.at-cal-table td {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6px 4px;
  vertical-align: middle;
  font-size: 0.82rem;
}

table.at-cal-table td.cell-free {
  background: #f0fdf4;
}

table.at-cal-table td.cell-busy {
  background: var(--pool-pale);
}

table.at-cal-table .at-mini-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--pool);
  color: #fff;
}

/* Haftalık takvim (havuz-yonetim.html ile aynı yapı) */
.cal-scroll-html {
  overflow-x: auto;
}

table.cal-html-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

table.cal-html-table th {
  background: var(--navy2);
  color: white;
  text-align: center;
  padding: 10px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

table.cal-html-table th.th-time {
  width: 4.25rem;
  background: var(--navy);
  position: sticky;
  left: 0;
  z-index: 5;
}

table.cal-html-table th.today-col {
  background: var(--pool);
}

table.cal-html-table td.cal-cell-html {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3px;
  vertical-align: middle;
}

table.cal-html-table td.td-time {
  background: #f8fafc;
  text-align: center;
  font-size: 0.72rem;
  font-family: "JetBrains Mono", monospace;
  color: var(--muted);
  font-weight: 600;
  padding: 6px 4px;
  border-right: 2px solid var(--border);
  position: sticky;
  left: 0;
  z-index: 4;
  box-shadow: 2px 0 0 rgba(148, 163, 184, 0.25);
}

.lane-grid-html {
  display: grid;
  grid-template-columns: repeat(var(--lane-cols, 6), 1fr);
  gap: 2px;
  padding: 3px;
}

a.lane-dot-html {
  aspect-ratio: 1;
  border-radius: 3px;
  min-height: 13px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.12s, box-shadow 0.12s;
  text-decoration: none;
  display: block;
}

a.lane-dot-html:hover {
  transform: scale(1.22);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
}

a.lane-dot-html.free {
  background: #dcfce7;
  border-color: #86efac;
}

a.lane-dot-html.occ {
  opacity: 0.92;
}

/* Ay özeti tablosu */
.at-month-mini th {
  background: var(--navy2);
  color: #fff;
  font-size: 0.75rem;
  padding: 8px 4px;
}

.at-month-mini td {
  min-width: 3rem;
  height: 3.4rem;
  vertical-align: top;
  font-size: 0.8rem;
}

.at-month-mini a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.at-month-mini a.is-today {
  color: var(--pool);
}

/* ── DATA TABLES ── */
table.at-data {
  width: 100%;
  border-collapse: collapse;
}

table.at-data th {
  background: var(--navy);
  color: white;
  padding: 11px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
}

table.at-data td {
  padding: 11px 14px;
  font-size: 0.83rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

table.at-data tbody tr:hover {
  background: var(--pool-pale);
}

.at-calendar-list-table td {
  white-space: nowrap;
}

.at-club-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.at-lane-pill-group {
  display: inline-flex;
  gap: 4px;
}

.at-lane-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #0369a1;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.at-weekday-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0c4a6e;
  font-size: 0.72rem;
  font-weight: 700;
}

.at-row-expander-col {
  display: none;
  width: 2.5rem;
  text-align: center;
}

.at-row-expander-col .js-row-toggle {
  display: none;
}

.at-mobile-detail-row {
  display: none;
}

.at-mobile-detail-box {
  font-size: 0.8rem;
  color: var(--text);
  display: grid;
  gap: 4px;
  padding: 8px 4px;
}

/* Ekstre */
table.at-statement {
  width: 100%;
  border-collapse: collapse;
}

table.at-statement th {
  padding: 10px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  text-align: left;
  background: #f8fafc;
  border-bottom: 2px solid var(--border);
}

table.at-statement td {
  padding: 10px 14px;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}

table.at-statement tbody tr:hover {
  background: var(--pool-pale);
}

.at-statement .credit {
  color: #16a34a;
  font-weight: 600;
}

.at-statement .debit {
  color: var(--danger);
  font-weight: 600;
}

/* ── BUTTONS (Bootstrap ile birlikte) ── */
body.at-app .btn-pool {
  background: var(--pool);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.85rem;
}

body.at-app .btn-pool:hover {
  background: #0284c7;
  color: #fff;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
}

body.at-app .btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 12px;
}

body.at-app .btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
}

body.at-app .btn-outline-pool {
  background: #fff;
  color: var(--pool);
  border: 1.5px solid var(--pool);
  font-weight: 600;
  border-radius: 8px;
}

body.at-app .btn-outline-pool:hover {
  background: var(--pool-pale);
  color: #0369a1;
}

body.at-app .btn-danger-soft {
  background: #fef2f2;
  color: var(--danger);
  border: 1.5px solid #fecaca;
  font-weight: 600;
  border-radius: 8px;
}

body.at-app .btn-danger-soft:hover {
  background: #fee2e2;
  color: #b91c1c;
}

/* Form */
body.at-app .form-control:focus,
body.at-app .form-select:focus {
  border-color: var(--pool);
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.12);
}

.choices__inner {
  min-height: 38px;
  border-color: var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 4px 10px;
}

.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
  border-color: var(--pool);
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.12);
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  border-color: var(--border);
  z-index: 30;
}

/* Alerts */
.at-alert {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.at-alert.info {
  background: var(--pool-pale);
  border-color: #bae6fd;
  color: #0c4a6e;
}

.at-alert.success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #14532d;
}

.at-alert.warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.at-alert.danger {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

/* Lane toggles (form) */
.at-lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

.at-lane-actions,
.at-quick-duration {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.at-lane-actions .btn,
.at-quick-duration .btn {
  padding: 3px 9px;
  font-size: 0.72rem;
  border-width: 1px;
  min-height: 26px;
}

.at-quick-duration .btn {
  background: var(--pool-pale);
}

.at-lane-actions .btn {
  background: #fff;
}

.at-lane-actions .btn:hover,
.at-quick-duration .btn:hover {
  transform: none;
}

.at-booking-block {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fbfdff;
}

.at-lane-chip-wrap .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.at-lane-chip-wrap {
  margin: 0;
  padding-left: 0;
  width: 100%;
}

.at-lane-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid #93c5fd;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 0.82rem;
  line-height: 1.1;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.at-lane-grid .form-check-label {
  margin-left: 0;
}

#bookingForm .row.g-3 {
  --bs-gutter-y: 0.7rem;
}

#bookingForm .form-label {
  margin-bottom: 0.32rem;
  font-size: 0.88rem;
}

#bookingForm .form-control,
#bookingForm .form-select {
  padding-top: 0.42rem;
  padding-bottom: 0.42rem;
}

.at-lane-chip-wrap .form-check-input:checked + .at-lane-chip {
  background: #0284c7;
  border-color: #0369a1;
  color: #fff;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.28);
}

.at-lane-chip-wrap .form-check-input:focus + .at-lane-chip {
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

@media (max-width: 768px) {
  .at-lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.at-booking-sidebar {
  position: sticky;
  top: 86px;
}

.at-repeat-details > summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.at-repeat-details > summary::-webkit-details-marker {
  display: none;
}

.at-repeat-details > summary::after {
  content: " +";
  color: var(--pool);
}

.at-repeat-details[open] > summary::after {
  content: " -";
}

.at-segment-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.at-segment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid #bfdbfe;
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
}

.at-segment-btn:hover {
  border-color: #60a5fa;
  color: #0f3e72;
}

.at-segment-btn.is-active {
  background: #0284c7;
  border-color: #0369a1;
  color: #fff;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.22);
}

.at-segment-group--two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}

.at-segment-group--two-col .at-segment-btn {
  width: 100%;
  min-height: 34px;
  padding: 6px 10px;
}

.at-lane-toggle .form-check-input {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  cursor: pointer;
}

.at-lane-toggle .form-check-label {
  display: none;
}

/* Guest login */
.at-guest-body {
  min-height: 100vh;
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 45%, #0c4a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.at-login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border: 1px solid var(--border);
}

.at-login-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  padding: 28px 24px;
  text-align: center;
}

.at-login-logo {
  width: min(220px, 100%);
  height: auto;
  display: inline-block;
}

.at-login-head .logo-icon {
  width: 48px;
  height: 48px;
  background: var(--pool);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--pool-light);
  font-size: 1.25rem;
}

.at-login-body {
  padding: 28px 24px;
}

/* Price preview block (admin) */
.at-price-preview {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  color: #fff;
}

.at-price-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.82rem;
}

.at-price-row .lbl {
  color: rgba(255, 255, 255, 0.6);
}

.at-price-row .val {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
}

.at-price-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 0.95rem;
}

.at-price-row.total .val {
  color: var(--accent);
  font-size: 1.05rem;
}

.text-pool {
  color: var(--pool) !important;
}

.fw-mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

/* Mobile */
@media (max-width: 768px) {
  #atSidebar {
    transform: translateX(-100%);
  }

  #atSidebar.open {
    transform: translateX(0);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
  }

  #atMain {
    margin-left: 0;
  }

  .at-page {
    padding: 16px;
  }

  .at-mobile-fab {
    display: flex !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pool);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(3, 105, 161, 0.45);
    z-index: 200;
  }

  .at-row-expander-col .js-row-toggle {
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  table.at-data th.at-row-expander-col,
  table.at-data td.at-row-expander-col {
    display: table-cell;
  }

  table.at-data th.at-mobile-hide,
  table.at-data td.at-mobile-hide {
    display: none;
  }

  .at-mobile-detail-row.is-open {
    display: table-row;
  }

  .at-mobile-detail-row td {
    background: #f8fafc;
  }
}

@media (max-width: 1200px) {
  .at-booking-sidebar {
    position: static;
    top: auto;
  }
}

.at-mobile-fab {
  display: none;
}
