html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
  width: 100%;
}
/* Style definitions for SmartSleep Cleaning Calendar */

:root {
  --primary-color: #1e293b;
  --primary-light: #f1f5f9;
  --primary-dark: #0f172a;
  
  --gold-color: #c5a880;
  --gold-hover: #b8976b;
  --gold-light: #fdfbf8;
  
  --booking-color: #003580;
  --booking-light: #ebf3ff;
  
  --airbnb-color: #ff5a5f;
  --airbnb-light: #fff0f0;
  
  --block-color: #6b7280;
  --block-light: #f3f4f6;
  
  --sameday-color: #e02424;
  --sameday-light: #fdf2f2;
  
  --success-color: #10b981;
  --success-light: #ecfdf5;
  
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-app: #fafafa;
  --bg-card: #ffffff;
  --border-color: #eae6db;
  
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-premium: 0 20px 25px -5px rgba(35, 92, 114, 0.08), 0 10px 10px -5px rgba(35, 92, 114, 0.03);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-app);
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Header styling */
.app-header {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.03);
}

.sync-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.status-indicator.online {
  background-color: var(--success-color);
}

.status-indicator.online::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--success-color);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.8); opacity: 0; }
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(35, 92, 114, 0.2);
}

.btn-secondary {
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: #f8fafc;
  border-color: var(--text-muted);
}

.btn-import {
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  font-weight: 600;
}

.btn-import:hover {
  background-color: #d1fae5;
  border-color: #34d399;
  transform: translateY(-1px);
}

/* ── Import CSV Modal ─────────────────────────────────────── */
.import-platform-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.import-tab {
  background: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.import-tab.active {
  opacity: 1;
  border-color: var(--border-color);
  background: var(--primary-light);
}

.import-instructions {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.import-instructions ol {
  padding-left: 1.2rem;
  margin-top: 0.4rem;
}

.import-instructions li {
  margin-bottom: 0.25rem;
}

.import-dropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-app);
  transition: all 0.2s ease;
  cursor: pointer;
}

.import-dropzone.drag-over {
  border-color: var(--success-color);
  background: var(--success-light);
}

.import-dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.75rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.import-filename {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success-color);
  background: var(--success-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-top: 0.25rem;
}

.import-result-bar {
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 1rem 0 0.75rem;
  text-align: center;
}

.import-result-bar.success {
  background: var(--success-light);
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.import-result-bar.warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.import-preview-list {
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
}

.import-preview-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.import-preview-row:last-child {
  border-bottom: none;
}

.import-preview-row.matched {
  background: var(--success-light);
}

.import-preview-row.unmatched {
  background: #fff;
  opacity: 0.55;
}

.import-match-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 9999px;
}

.import-match-badge.ok {
  background: #d1fae5;
  color: #065f46;
}

.import-match-badge.no {
  background: #fee2e2;
  color: #991b1b;
}

.btn-sync {
  background-color: var(--primary-color);
  color: white;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
}

.btn-sync:hover {
  background-color: var(--primary-dark);
}

.icon-spin {
  animation: none;
}

.btn-sync:hover .icon-spin,
.syncing .icon-spin {
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Main Layout */
.app-main-content {
  flex: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.dashboard-hero {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.025em;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-blue-light { background-color: var(--primary-light); }
.bg-orange-light { background-color: #fef3c7; }
.bg-red-light { background-color: var(--sameday-light); }

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.text-red {
  color: var(--sameday-color);
}

/* Grid Layout for Calendar and List */
.dashboard-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}

.layout-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Calendar controls */
.calendar-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-arrow {
  background: white;
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.15s ease;
  color: var(--text-dark);
}

.btn-arrow:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.calendar-current-month {
  font-weight: 700;
  font-size: 1rem;
  min-width: 120px;
  text-align: center;
  color: var(--primary-dark);
}

.calendar-legend {
  padding: 0.75rem 1.5rem;
  background-color: #fafbfd;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bg-booking { background-color: var(--booking-color); }
.bg-airbnb { background-color: var(--airbnb-color); }
.bg-block { background-color: var(--block-color); }
.bg-sameday { background-color: var(--sameday-color); }

/* Calendar grid */
.calendar-grid-wrapper {
  padding: 1.5rem;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day {
  aspect-ratio: 1.15;
  border: 1px solid #f1f5f9;
  background-color: white;
  border-radius: var(--radius-sm);
  padding: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
}

.calendar-day:hover:not(.empty) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.calendar-day.empty {
  background-color: transparent;
  border-color: transparent;
  cursor: default;
}

.calendar-day.today {
  border: 2px solid var(--primary-color);
  font-weight: 700;
}

.calendar-day-num {
  z-index: 2;
}

/* Event badges on calendar days */
.calendar-day-events {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.day-badge {
  font-size: 0.65rem;
  padding: 2px 4px;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.day-badge.booking {
  background-color: var(--booking-color);
}

.day-badge.airbnb {
  background-color: var(--airbnb-color);
}

.day-badge.block {
  background-color: var(--block-color);
}

.day-badge.sameday {
  background-color: var(--sameday-color);
  border: 1px solid white;
}

/* Highlight booking stretches across days */
.calendar-day.has-booking-booking { background-color: var(--booking-light); }
.calendar-day.has-booking-airbnb { background-color: var(--airbnb-light); }
.calendar-day.has-booking-block { background-color: var(--block-light); }
.calendar-day.has-sameday-turn { background-color: var(--sameday-light); }

/* Filter Controls */
.filter-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-select {
  font-family: var(--font-main);
  padding: 0.45rem 2rem 0.45rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: white;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

.form-select:focus {
  border-color: var(--primary-color);
}

/* Cleaning list styling */
.cleanings-list {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 550px;
  overflow-y: auto;
}

.cleaning-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--primary-color);
}

.cleaning-card.urgent {
  border-left-color: var(--sameday-color);
  background-color: #fffafb;
}

.cleaning-card.completed {
  border-left-color: var(--success-color);
  opacity: 0.75;
}

.cleaning-card.completed .cleaning-date {
  text-decoration: line-through;
  color: var(--text-muted);
}

.cleaning-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.cleaning-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cleaning-date-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cleaning-date {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.urgent-badge {
  background-color: var(--sameday-color);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.cleaning-details {
  font-size: 0.9rem;
  color: #334155;
  background-color: #f8fafc;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
}

.detail-label {
  font-weight: 600;
  color: var(--text-muted);
}

.detail-val {
  font-weight: 500;
  color: var(--text-dark);
}

.cleaning-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.15s ease;
  margin-bottom: 2px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + .checkbox-custom {
  background-color: var(--success-color);
  border-color: var(--success-color);
}

input[type="checkbox"]:checked + .checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-icon {
  background: white;
  border: 1px solid var(--border-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-icon.whatsapp {
  color: #25d366;
  border-color: #25d366;
}

.btn-icon.whatsapp:hover {
  background-color: #e8fbee;
  transform: scale(1.08);
}

/* Spinner and Loaders */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  gap: 1rem;
  color: var(--text-muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

.no-data {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
  font-weight: 500;
}

/* Modal styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: white;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafbfd;
}

.modal-title {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.btn-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.btn-close:hover {
  color: var(--text-dark);
}

.modal-body {
  padding: 1.5rem;
}

.modal-event {
  background-color: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--primary-color);
}

.modal-event:last-child {
  margin-bottom: 0;
}

.modal-event.booking { border-left-color: var(--booking-color); }
.modal-event.airbnb { border-left-color: var(--airbnb-color); }
.modal-event.block { border-left-color: var(--block-color); }
.modal-event.sameday { border-left-color: var(--sameday-color); }

.modal-event-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.modal-event-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.modal-event-desc {
  font-size: 0.85rem;
  color: #475569;
  white-space: pre-line;
  background-color: white;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #f1f5f9;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
}

/* Footer styling */
.app-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #1e293b;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Property Select and Filtering styling */
.property-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--primary-light);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.property-select-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.property-select {
  border: 1px solid var(--border-color);
  padding: 0.4rem 2rem 0.4rem 1rem !important;
  border-radius: 9999px;
  background-color: white;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.dashboard-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.dashboard-hero .hero-text {
  margin-bottom: 0;
}

/* Property Badge in Cards */
.property-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

.property-badge.europa-ii {
  background-color: #faf5ff;
  color: #7e22ce;
  border: 1px solid #e9d5ff;
}

.property-badge.seaside {
  background-color: #ecfeff;
  color: #0891b2;
  border: 1px solid #c5f2f7;
}

/* Tabs Bar (Desktop & Mobile) */
.mobile-tabs-nav {
  display: flex;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  padding: 4px;
  margin: 0 auto 2rem auto;
  max-width: 600px;
  box-shadow: var(--shadow-md);
}

.mobile-tab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  background: none;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.mobile-tab-btn.active {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 10px rgba(35, 92, 114, 0.25);
}

/* Hide sections by default, to be toggled by active tab */
.dashboard-layout {
  display: block; /* Single column view per tab */
}

.dashboard-layout #calendar-section-wrapper,
.dashboard-layout #cleanings-section-wrapper,
.dashboard-layout #reports-section-wrapper,
.dashboard-layout #sef-section-wrapper {
  display: none;
}

.dashboard-layout.show-calendar #calendar-section-wrapper {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dashboard-layout.show-cleanings #cleanings-section-wrapper {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dashboard-layout.show-reports #reports-section-wrapper {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dashboard-layout.show-sef #sef-section-wrapper {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Reports Section Styles */
.search-input {
  width: 220px;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  padding: 0.45rem 1.2rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-input:focus {
  border-color: var(--primary-color);
}

.reports-summary {
  padding: 1.5rem;
  background-color: #fafbfd;
  border-bottom: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.summary-box {
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-sm);
}

.summary-box-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.summary-box-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.report-table th {
  background-color: #f8fafc;
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.5rem 0.5rem;
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.report-table td {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid var(--border-color);
  color: #334155;
  white-space: nowrap;
}

.report-table tr:hover {
  background-color: #f8fafc;
}

.platform-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  color: white;
  display: inline-block;
  text-transform: uppercase;
}

.platform-tag.booking { background-color: var(--booking-color); }
.platform-tag.airbnb { background-color: var(--airbnb-color); }
.platform-tag.block { background-color: var(--block-color); }

/* Mobile specific responsive styling */
@media (max-width: 768px) {
  .app-main-content {
    padding: 1rem;
  }
  
  .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .property-filter-wrapper {
    width: 100%;
  }
  
  .property-select {
    flex: 1;
  }
  
  .search-input {
    width: 100%;
  }
  
  .filter-controls {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Public Website Styling (Luxury Hotel Theme - Sheraton/Continental Style) */
.public-site {
  background-color: #faf9f6;
  color: #1f2937;
  font-family: var(--font-main);
}

.public-site .app-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eae6db;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.public-site .logo-wrapper {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  height: auto;
}

.public-site .header-logo {
  height: 70px !important;
  width: auto;
  transition: transform 0.3s ease;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.public-site .nav-link {
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.public-site .nav-link:hover {
  color: var(--gold-color);
}

/* Premium Gold Buttons */
.btn-gold {
  background-color: var(--gold-color);
  color: #0f172a;
  border: 1px solid var(--gold-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #000000;
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background-color: transparent;
  color: var(--gold-color);
  border: 1.5px solid var(--gold-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
  cursor: pointer;
}

.btn-gold-outline:hover {
  background-color: var(--gold-color);
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.2);
  transform: translateY(-2px);
}

.public-site #btn-login-trigger.btn-gold-outline {
  color: #1e293b;
  border-color: var(--gold-color);
}

.public-site #btn-login-trigger.btn-gold-outline:hover {
  background-color: var(--gold-color);
  color: #ffffff;
}

.btn-white-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-white-outline:hover {
  background-color: #ffffff;
  color: #0f172a;
  transform: translateY(-2px);
}

/* Hero Section (Luxury Full-Bleed) */
.public-hero {
  position: relative;
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.92)), 
              url('https://cf.bstatic.com/xdata/images/hotel/max1280x900/774957934.jpg?k=054998815cf3341965ab1ce1e2f4864ddc751bae12320943473c13a99dc1b17a&o=&hp=1') no-repeat center center/cover;
  color: white;
  padding: 8rem 2rem 5rem 2rem;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.public-hero-content {
  max-width: 850px;
  margin: 0 auto;
  z-index: 2;
}

.hotel-stars {
  color: var(--gold-color);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1.25rem;
  letter-spacing: 0.4em;
  text-align: center;
}

.public-hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.public-hero-title .highlight-text {
  color: var(--gold-color);
  font-style: italic;
}

.public-hero-subtitle {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.public-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Listings Showcase */
.public-listings {
  padding: 3rem 2rem;
  background-color: #faf9f6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 700px;
  margin: 0 auto;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  color: var(--gold-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 3.5rem;
}

.listing-card-public {
  background-color: white;
  border: 1px solid #eae6db;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(27, 31, 35, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.listing-card-public:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
  border-color: var(--gold-color);
}

.listing-info-public {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.listing-title-public {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.listing-desc-public {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex: 1;
}

.listing-amenities-public {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
  border-top: 1px solid #eae6db;
  padding-top: 1.5rem;
}

.amenity-item {
  background-color: #faf9f6;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #eae6db;
}

/* Booking Channels Buttons styling */
.btn-luxury-channel {
  background-color: #ffffff;
  color: var(--text-dark);
  border: 1px solid #eae6db;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-luxury-channel:hover {
  border-color: var(--gold-color);
  background-color: #faf9f6;
}

.btn-luxury-channel.booking-bg {
  background-color: var(--booking-color);
  color: white;
  border-color: var(--booking-color);
}

.btn-luxury-channel.booking-bg:hover {
  background-color: #002253;
  border-color: #002253;
}

.btn-luxury-channel.airbnb-bg {
  background-color: var(--airbnb-color);
  color: white;
  border-color: var(--airbnb-color);
}

.btn-luxury-channel.airbnb-bg:hover {
  background-color: #e04046;
  border-color: #e04046;
}

/* Contact form ( Sheraton feel ) */
.public-contact {
  padding: 3rem 2rem;
  background-color: #faf8f5;
  border-top: 1px solid #eae6db;
}

.contact-form {
  background-color: white;
  border: 1px solid #eae6db;
  border-radius: 4px;
  padding: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

@media (max-width: 768px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-form {
    padding: 2rem 1.5rem;
  }
  .public-hero-title {
    font-size: 2.75rem;
  }
  .section-title {
    font-size: 2.25rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
}

.form-input {
  border: 1px solid #eae6db;
  padding: 0.8rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  background-color: #faf9f6;
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: var(--gold-color);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

/* Modal and Login Tweaks */
.modal-login-card {
  max-width: 420px;
  background-color: #faf9f6;
  border: 1px solid #eae6db;
  border-radius: 4px;
}

.login-instruction {
  font-size: 0.9rem;
  color: #475569;
  text-align: center;
  line-height: 1.5;
}

.btn-logout {
  padding: 0.4rem 1.25rem !important;
  font-size: 0.8rem;
  background-color: #ffffff;
  border: 1px solid #eae6db;
  font-weight: 700;
  border-radius: 4px;
}

.btn-logout:hover {
  background-color: #faf9f6;
  border-color: var(--gold-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Editable Real Value Input in Report Table */
.input-real-value {
  width: 65px;
  border: 1px dashed var(--border-color);
  padding: 3px 6px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
  border-radius: 4px;
  outline: none;
}

.input-real-value:focus {
  border: 1px solid var(--success-color);
  background-color: var(--success-light);
}

.input-real-value-container {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.btn-save-value {
  background: none;
  border: none;
  color: var(--success-color);
  cursor: pointer;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease;
}

.btn-save-value:hover {
  transform: scale(1.15);
}

/* Guest name editable field */
.input-guest-container {
  display: flex;
  align-items: center;
  gap: 4px;
}

.input-guest-name {
  width: 110px;
  border: 1px dashed var(--border-color);
  padding: 3px 6px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 4px;
  outline: none;
  background: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.input-guest-name:focus {
  border: 1px solid var(--gold-color);
  background-color: var(--gold-light);
}

.input-guest-name::placeholder {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.78rem;
}

.guest-edit-icon {
  font-size: 0.75rem;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s;
}

.input-guest-container:hover .guest-edit-icon {
  opacity: 1;
}

/* Gallery Thumbnail Styles */
.gallery-thumbnail {
  width: 90px;
  height: auto;
  max-height: 65px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.gallery-thumbnail:hover, .gallery-thumbnail.active {
  border-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.02);
}

#details-modal-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.gallery-container {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem;
  background-color: #f8fafc;
  border-radius: var(--radius-md);
  margin: 0 1.5rem 1rem 1.5rem;
  border: 1px solid var(--border-color);
}

/* Print Stylesheet */
@media print {
  body {
    background: white;
    color: black;
  }
  
  .app-header, 
  .dashboard-hero,
  .stats-grid,
  .calendar-section,
  .filter-controls,
  .cleaning-actions,
  .app-footer,
  .btn-secondary {
    display: none !important;
  }
  
  .app-main-content {
    padding: 0;
  }
  
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  
  .layout-card {
    border: none;
    box-shadow: none;
  }
  
  .card-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .cleanings-list {
    max-height: none;
    overflow: visible;
    padding: 0;
  }
  
  .cleaning-card {
    border: 1px solid #ccc !important;
    border-left: 6px solid black !important;
    break-inside: avoid;
    margin-bottom: 1rem;
    background: white !important;
    opacity: 1 !important;
  }
  
  .cleaning-details {
    border: 1px solid #eee;
    background: #fff;
  }
}
/* =====================================================
   MOBILE-FIRST RESPONSIVE STYLES (≤ 768px)
   ===================================================== */

@media (max-width: 768px) {

  /* --- Base --- */
  html {
    scroll-padding-top: 75px;
  }

  /* --- Header --- */
  .app-header {
    padding: 0.3rem 0.75rem;
    width: 100%;
    max-width: 100%;
  }

  .public-site .app-header {
    padding: 0.3rem 0.75rem;
  }

  .header-container {
    gap: 0.5rem;
    padding: 0 0.5rem !important;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .public-site .header-logo {
    height: 42px !important;
  }

  .public-site .menu-toggle {
    display: flex !important; /* show hamburger button on mobile */
  }

  .public-nav {
    display: none !important; /* hide default navigation on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1.5px solid #eae6db;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
    align-items: stretch !important;
    z-index: 999;
  }

  .public-nav.open {
    display: flex !important; /* show when vertical dropdown is toggled open */
  }

  .public-site .public-nav .nav-link {
    display: block !important; /* display links inside dropdown vertically */
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
    color: var(--primary-dark) !important;
    border-bottom: 1px solid #f1ece1;
    text-align: left;
  }

  .public-site .public-nav .nav-link:hover {
    color: var(--gold-color) !important;
  }

  .public-site #btn-login-trigger.btn-gold-outline {
    display: block !important;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }

  /* --- Hero --- */
  .public-hero {
    padding: 5.5rem 1.25rem 3.5rem 1.25rem;
    min-height: 55vh;
  }

  .public-hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .public-hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .public-hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .public-hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
  }

  /* --- Listings Section --- */
  .public-listings {
    padding: 3rem 1rem;
  }

  .section-header-centered {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .listings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .listing-card-public {
    border-radius: 12px;
  }

  .listing-footer-public {
    padding: 1rem;
  }

  /* Channel buttons full width stacked */
  .listing-footer-public > div[style*="display: flex"] {
    flex-direction: column !important;
  }

  /* --- Contact Section --- */
  .public-contact {
    padding: 3rem 1rem;
  }

  .container-narrow {
    padding: 0;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .form-input {
    padding: 0.75rem 1rem;
    font-size: 1rem; /* prevent iOS zoom on focus */
  }

  /* --- Details Modal (Gallery) --- */
  .modal-card {
    width: 95% !important;
    max-width: 95% !important;
    border-radius: 16px;
    max-height: 92vh;
    overflow-y: auto;
  }

  #details-gallery-wrapper {
    height: 220px !important;
  }

  #details-modal-img {
    height: 220px !important;
  }

  .modal-body {
    padding: 0 !important;
  }

  .modal-header {
    padding: 0.85rem 1rem;
  }

  .modal-title {
    font-size: 1rem;
  }

  .gallery-container {
    margin: 0 0.5rem 0.75rem 0.5rem !important;
    padding: 0.4rem !important;
  }

  .gallery-thumbnail {
    width: 68px;
    height: 50px;
  }

  /* --- Footer --- */
  .public-site .app-footer {
    padding: 1.5rem 1rem;
    font-size: 0.8rem;
  }

  .footer-container {
    gap: 0.75rem;
  }

  /* --- Info grid inside modal --- */
  .modal-body > div[style*="padding: 0 1.5rem"] {
    padding: 0 1rem !important;
  }

  /* Grid check-in/check-out 2-col stays but smaller text */
  .modal-body [style*="grid-template-columns: 1fr 1fr"] {
    gap: 0.5rem;
  }

  /* --- Features / Amenities --- */
  .listing-amenities-public {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .amenity-item {
    font-size: 0.78rem;
  }

  /* --- Stats Grid (dashboard) --- */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* --- App main (dashboard) --- */
  .app-main-content {
    padding: 1rem;
  }

  /* --- Terms page --- */
  .terms-container {
    margin: 5rem 1rem 2rem 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .terms-title {
    font-size: 1.6rem;
  }

  .terms-section-title {
    font-size: 1.1rem;
  }
}

/* Extra small screens (≤ 380px) */
@media (max-width: 380px) {
  .public-hero-title {
    font-size: 1.65rem;
  }

  .public-site .header-logo {
    height: 40px !important;
  }

  #details-gallery-wrapper {
    height: 185px !important;
  }

  .gallery-thumbnail {
    width: 56px;
    height: 42px;
  }
}

.btn-delete-res:hover {
  transform: scale(1.18);
  color: #dc2626 !important;
}

/* Responsive mobile scrolling tabs */
@media (max-width: 600px) {
  .mobile-tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-radius: 9999px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    justify-content: flex-start;
  }
  .mobile-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .mobile-tab-btn {
    flex: 0 0 auto;
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 9999px;
  }
}

