/* =========================================================================
   GOLDEN SADDLE LODGE — AUTHENTIC KASPI PAY & KASPI TRAVEL DESIGN SYSTEM
   ========================================================================= */

:root {
  /* Official Brand Palette from Logo */
  --lodge-brown: #4a2611;
  --lodge-brown-dark: #381c0b;
  --lodge-brown-light: #5e341a;
  --lodge-gold: #e68a00;
  --lodge-gold-hover: #d97706;
  --lodge-gold-dark: #b45309;
  --lodge-gold-light: #fff8ee;
  --lodge-gold-border: #fde68a;
  --lodge-sand: #c88a3b;
  --lodge-sand-light: #f7f3ec;
  --lodge-sand-badge: #fef3c7;

  /* Retained Functional Accents */
  --kaspi-red: #f14635;
  --kaspi-red-hover: #e03626;
  --kaspi-whatsapp: #25d366;
  --kaspi-whatsapp-hover: #20bd5a;
  --status-green: #2d7a4d;
  --status-green-bg: #ecfdf5;

  /* Canvas & Typography */
  --bg-page: #fbf9f5;
  --card-bg: #ffffff;
  --text-main: #2a1b10;
  --text-secondary: #4a382b;
  --text-muted: #544336;
  --border-color: #ede5da;
  --border-hover: #dfd4c5;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: 'Manrope', 'Golos Text', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11', 'tnum';
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.012em;
  line-height: 1.45;
}

h1, h2, h3, h4, .font-black {
  letter-spacing: -0.022em;
}

/* =========================================================================
   KASPI CARDS
   ========================================================================= */
.kaspi-card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1.5px solid var(--border-color);
  box-shadow: 0 2px 12px rgba(74, 38, 17, 0.035);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.kaspi-card-interactive {
  cursor: pointer;
}

.kaspi-card-interactive:hover {
  border-color: var(--border-hover);
  box-shadow: 0 6px 20px rgba(74, 38, 17, 0.07);
}

.kaspi-card-interactive:active {
  transform: scale(0.99);
}

/* =========================================================================
   KASPI BUTTONS — ERGONOMIC, HIGH-CONTRAST & TOUCH-FRIENDLY (48-52px)
   ========================================================================= */
.btn-kaspi {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  user-select: none;
  text-decoration: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.2;
}

.btn-kaspi:active {
  transform: scale(0.97);
}

/* 1. Golden Sun Primary Button (Logo Color Scheme) */
.btn-kaspi-red,
.btn-kaspi-primary,
.btn-lodge-gold,
.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.btn-kaspi-red:hover,
.btn-kaspi-primary:hover,
.btn-lodge-gold:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #e68a00 0%, #b45309 100%);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45);
}

.btn-kaspi-red:active,
.btn-kaspi-primary:active,
.btn-lodge-gold:active,
.btn-primary:active {
  background: #b45309;
  transform: scale(0.97);
}

/* 2. Saddle Brown Dark Accent Button */
.btn-lodge-brown {
  background: var(--lodge-brown);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(74, 38, 17, 0.25);
}

.btn-lodge-brown:hover {
  background: var(--lodge-brown-dark);
}

/* 3. Official WhatsApp Action Button */
.btn-kaspi-whatsapp {
  background: var(--kaspi-whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-kaspi-whatsapp:hover {
  background: var(--kaspi-whatsapp-hover);
}

.btn-kaspi-whatsapp:active {
  transform: scale(0.97);
}

/* 4. Kaspi Green / Success Button */
.btn-kaspi-success,
.btn-kaspi-green {
  background: var(--status-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(45, 122, 77, 0.28);
}

.btn-kaspi-success:hover,
.btn-kaspi-green:hover {
  background: #23613d;
}

.btn-kaspi-success:active,
.btn-kaspi-green:active {
  transform: scale(0.97);
}

/* 5. Kaspi Neutral Secondary Button (Warm Steppe Sand Tint) */
.btn-kaspi-secondary,
.btn-kaspi-subtle {
  background: #f4eee5;
  color: var(--text-main);
  border: 1.5px solid #e3d8ca;
}

.btn-kaspi-secondary:hover,
.btn-kaspi-subtle:hover {
  background: #eae2d7;
  border-color: #d6c8b7;
}

.btn-kaspi-secondary:active,
.btn-kaspi-subtle:active {
  background: #dfd5c7;
  transform: scale(0.98);
}

/* 6. Outline Button */
.btn-kaspi-outline {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
}

.btn-kaspi-outline:hover {
  background: var(--lodge-sand-light);
  border-color: var(--border-hover);
}

.btn-kaspi-outline:active {
  background: #eee7dc;
  transform: scale(0.98);
}

/* Auto-width & inline support for buttons */
.btn-kaspi[style*="width: auto"],
.btn-kaspi.btn-inline {
  width: auto;
  display: inline-flex;
}

/* Button size modifiers for balanced mobile layout, modals & tables */
.btn-kaspi.text-sm,
.btn-kaspi-compact,
.btn-kaspi-sm {
  min-height: 42px;
  font-size: 13.5px;
  border-radius: 12px;
  padding: 0 14px;
}

.btn-kaspi.text-xs,
.btn-kaspi-xs,
.btn-kaspi[class*="py-1"],
.btn-kaspi[class*="py-1.5"] {
  min-height: 34px;
  font-size: 12px;
  border-radius: 10px;
  padding: 0 12px;
  font-weight: 700;
}

.btn-kaspi[class*="py-2"],
.btn-kaspi[class*="py-2.5"] {
  min-height: 40px;
  border-radius: 12px;
  padding: 0 14px;
}

/* =========================================================================
   KASPI CIRCLE SERVICE ICONS (Kaspi.kz Home Style)
   ========================================================================= */
.kaspi-circle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.15s ease;
  padding: 4px;
}

.kaspi-circle-btn:active {
  transform: scale(0.92);
}

.kaspi-circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(229, 231, 235, 0.6);
  transition: all 0.15s ease;
}

.kaspi-circle-btn:hover .kaspi-circle-icon {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.kaspi-circle-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

/* =========================================================================
   KASPI INPUTS & STEPPERS
   ========================================================================= */
.kaspi-input {
  height: 48px;
  border-radius: 14px;
  border: 1.5px solid var(--border-color);
  background: #fdfcf9;
  padding: 0 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
  width: 100%;
  outline: none;
  transition: all 0.15s ease;
}

.kaspi-input:focus {
  background: #ffffff;
  border-color: var(--lodge-gold);
  box-shadow: 0 0 0 3px rgba(230, 138, 0, 0.14);
}

.kaspi-input.text-xs,
.kaspi-input-sm,
.kaspi-input[class*="py-1"],
.kaspi-input[class*="py-2"] {
  height: 38px;
  min-height: 38px;
  font-size: 13px;
  border-radius: 11px;
  padding-left: 12px;
  padding-right: 12px;
}

select.kaspi-input {
  appearance: none;
  -webkit-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='%238c591c' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

/* Big Stepper Buttons */
.kaspi-stepper-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f4eee5;
  border: 1.5px solid #e3d8ca;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all 0.12s;
  user-select: none;
}

.kaspi-stepper-btn:hover {
  background: #eae2d7;
  border-color: #d6c8b7;
}

.kaspi-stepper-btn:active {
  transform: scale(0.92);
  background: #dfd5c7;
}

/* =========================================================================
   ROOM CARDS & SELECTION TILES
   ========================================================================= */
.kaspi-room-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid var(--border-color);
  padding: 16px 18px;
  box-shadow: 0 2px 10px rgba(74, 38, 17, 0.03);
  transition: all 0.15s ease;
  margin-bottom: 12px;
}

.kaspi-room-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 6px 16px rgba(74, 38, 17, 0.06);
}

/* Room selection tile in Step 2 */
.room-select-card {
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.room-select-card:hover {
  border-color: var(--border-hover);
}

.room-select-card.selected {
  border-color: var(--lodge-gold);
  background: var(--lodge-gold-light);
  box-shadow: 0 4px 14px rgba(230, 138, 0, 0.16);
}

/* Status Badges */
.kaspi-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.badge-free {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.badge-occupied {
  background: #fff8ee;
  color: #854d0e;
  border: 1px solid #fef08a;
}

.badge-warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.badge-danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* =========================================================================
   BOTTOM NAVIGATION BAR — AUTHENTIC KASPI TRAVEL / SUPERAPP STYLE
   ========================================================================= */
.kaspi-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid var(--border-color);
  height: 68px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px calc(env(safe-area-inset-bottom, 0px) + 2px) 4px;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(74, 38, 17, 0.06);
}

@media (min-width: 768px) {
  .kaspi-bottom-bar {
    max-width: 672px; /* aligns with max-w-2xl main content */
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px 24px 0 0;
    border-left: 1.5px solid var(--border-color);
    border-right: 1.5px solid var(--border-color);
  }
}

.kaspi-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 14px;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  flex: 1;
  max-width: 82px;
  min-height: 52px;
  background: transparent;
  border: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.kaspi-nav-tab:focus-visible {
  outline: 2px solid var(--lodge-gold);
  outline-offset: -2px;
}

.kaspi-nav-tab:active {
  transform: scale(0.92);
}

.kaspi-nav-icon {
  font-size: 21px;
  line-height: 1;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kaspi-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.1;
  transition: color 0.15s ease;
}

/* Active Tab State */
.kaspi-nav-tab.active {
  color: #b45309;
}

.kaspi-nav-tab.active .kaspi-nav-label {
  color: #b45309;
  font-weight: 800;
}

.kaspi-nav-tab.active .kaspi-nav-icon {
  transform: translateY(-2px) scale(1.12);
}

/* Center Floating Plus Action Tab */
.kaspi-nav-tab-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  padding: 0 4px;
  user-select: none;
  flex: 1;
  max-width: 80px;
  background: transparent;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.kaspi-center-plus-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.42);
  margin-top: -16px;
  border: 2.5px solid #ffffff;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.15s ease;
}

.kaspi-plus-symbol {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-top: -1px;
}

.kaspi-nav-tab-center:hover .kaspi-center-plus-circle {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.5);
}

.kaspi-nav-tab-center:active .kaspi-center-plus-circle {
  transform: scale(0.92);
}

.kaspi-nav-tab-center .kaspi-nav-label {
  color: #b45309;
  font-weight: 800;
  font-size: 11px;
}

/* =========================================================================
   MODALS & BOTTOM SHEETS
   ========================================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 27, 16, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}

.modal-content {
  background: #ffffff;
  border-radius: 24px;
  border: 1.5px solid var(--border-color);
  max-height: 90vh;
  overflow-y: auto;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 25px 50px -12px rgba(74, 38, 17, 0.25);
}

/* Bottom Sheet layout on mobile */
@media (max-width: 640px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .modal-content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    max-height: 85vh;
  }
}

/* Hide scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* =========================================================================
   LOCALIZED RUSSIAN CALENDAR & DATE-TIME PICKER
   ========================================================================= */
.calendar-widget {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: 18px;
  padding: 14px;
  user-select: none;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calendar-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--lodge-brown);
  display: flex;
  align-items: center;
  gap: 6px;
}

.calendar-nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--lodge-sand-light);
  color: var(--lodge-brown);
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.15s ease;
}

.calendar-nav-btn:hover {
  background: var(--lodge-gold-light);
  border-color: var(--lodge-gold);
  color: var(--lodge-gold-dark);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.calendar-weekdays .weekend {
  color: #c53030;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.calendar-day {
  min-height: 36px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.1s ease;
  position: relative;
  background: transparent;
  color: var(--text-main);
  border: 1px solid transparent;
}

.calendar-day:hover:not(.empty):not(.disabled) {
  background: #fdf6ec;
  color: var(--lodge-gold-dark);
  border-color: #fde68a;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.weekend {
  color: #b91c1c;
}

.calendar-day.in-range {
  background: #fef3c7 !important;
  color: #92400e !important;
  border-radius: 4px;
}

.calendar-day.check-in {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.calendar-day.check-out {
  background: linear-gradient(135deg, #4a2611 0%, #381c0b 100%) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(74, 38, 17, 0.4);
}

.calendar-day.today::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

.calendar-day.disabled {
  opacity: 0.25 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: #f8fafc !important;
}

.date-box-active {
  border-color: var(--lodge-gold) !important;
  background: #fffdf9 !important;
  box-shadow: 0 0 0 3px rgba(230, 138, 0, 0.15) !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.18s ease-out forwards;
}

/* =========================================================================
   PMS ROOM CHESSBOARD & BOOKING GRID (MOBILE & DESKTOP OPTIMIZED)
   ========================================================================= */

.pms-grid-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(74, 38, 17, 0.04);
  position: relative;
}

.pms-grid-scroll::-webkit-scrollbar {
  height: 8px;
}

.pms-grid-scroll::-webkit-scrollbar-track {
  background: #fdfaf7;
  border-radius: 4px;
}

.pms-grid-scroll::-webkit-scrollbar-thumb {
  background: #d4c5b5;
  border-radius: 4px;
}

.pms-grid-scroll::-webkit-scrollbar-thumb:hover {
  background: #b45309;
}

.pms-table {
  border-collapse: separate;
  border-spacing: 0;
  width: max-content;
  min-width: 100%;
}

/* Sticky Room Column (Left) */
.pms-sticky-room {
  position: sticky;
  left: 0;
  z-index: 25;
  background: #ffffff;
  border-right: 2px solid #e7ded4;
  box-shadow: 4px 0 10px -2px rgba(74, 38, 17, 0.06);
  min-width: 120px;
  max-width: 130px;
  width: 120px;
}

@media (min-width: 768px) {
  .pms-sticky-room {
    min-width: 145px;
    max-width: 160px;
    width: 150px;
  }
}

/* Sticky Header Row (Top) */
.pms-sticky-header th {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #faf6f0;
  border-bottom: 2px solid #e7ded4;
}

.pms-sticky-header .pms-sticky-room {
  z-index: 30; /* Corner cell highest z-index */
  background: #f4eee4;
}

/* Cell Sizing & Styling */
.pms-cell {
  min-width: 60px;
  width: 68px;
  height: 52px;
  padding: 4px;
  border-right: 1px solid #f2ece4;
  border-bottom: 1px solid #f2ece4;
  text-align: center;
  vertical-align: middle;
  transition: background-color 0.12s ease;
  position: relative;
}

@media (min-width: 768px) {
  .pms-cell {
    min-width: 74px;
    width: 80px;
    height: 56px;
    padding: 5px;
  }
}

/* Weekend Column Tint */
.pms-col-weekend {
  background-color: #faf5ed;
}

/* Today Column Highlight */
.pms-col-today {
  background-color: #fef9ed !important;
  border-left: 2px solid #f59e0b !important;
  border-right: 2px solid #f59e0b !important;
}

.pms-header-today {
  background-color: #fde68a !important;
  color: #78350f !important;
  border-left: 2px solid #f59e0b !important;
  border-right: 2px solid #f59e0b !important;
}

/* Free Cell Hover */
.pms-cell-free {
  cursor: pointer;
  user-select: none;
}

.pms-cell-free:hover {
  background-color: #ecfdf5 !important;
}

.pms-cell-free:hover .pms-add-icon {
  opacity: 1;
  transform: scale(1.15);
}

.pms-add-icon {
  opacity: 0;
  font-size: 14px;
  font-weight: 900;
  color: #2d7a4d;
  transition: all 0.12s ease;
}

/* Booking Cards/Pills inside cells */
.pms-booking-pill {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3px 4px;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: none;
}

.pms-booking-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.14);
}

.pms-booking-pill:active {
  transform: scale(0.97);
}

/* Status variants */
.pms-pill-in_house {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  color: #ffffff;
  border: 1px solid #1e3a8a;
}

.pms-pill-confirmed {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  color: #ffffff;
  border: 1px solid #064e3b;
}

.pms-pill-new {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: #ffffff;
  border: 1px solid #92400e;
}

.pms-pill-turnover {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 100%);
  color: #ffffff;
  border: 1px solid #9a3412;
}

.pms-pill-departing {
  background: #f1f5f9;
  color: #475569;
  border: 1px dashed #cbd5e1;
}

