@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* HSL Color System */
  --bg-gradient: linear-gradient(135deg, hsl(222, 47%, 11%) 0%, hsl(224, 64%, 6%) 100%);
  --panel-bg: hsla(222, 47%, 15%, 0.65);
  --panel-border: hsla(217, 30%, 30%, 0.3);
  --panel-border-hover: hsla(199, 89%, 48%, 0.4);
  
  --primary: hsl(199, 89%, 48%);
  --primary-hover: hsl(199, 95%, 58%);
  --primary-glow: hsla(199, 89%, 48%, 0.25);
  
  --success: hsl(160, 84%, 39%);
  --success-glow: hsla(160, 84%, 39%, 0.2);
  
  --warning: hsl(35, 92%, 47%);
  --warning-glow: hsla(35, 92%, 47%, 0.2);
  
  --danger: hsl(353, 76%, 53%);
  --danger-glow: hsla(353, 76%, 53%, 0.2);
  
  --info: hsl(263, 70%, 50%);
  --muted: hsl(215, 20%, 65%);
  --text-main: hsl(210, 40%, 98%);
  --text-muted: hsl(215, 25%, 72%);
  --sidebar-width: 280px;
  --header-height: 70px;
  --glass-blur: blur(16px);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
}
::-webkit-scrollbar-thumb {
  background: hsla(217, 30%, 30%, 0.6);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Common Layout Elements */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: var(--panel-border-hover);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Core Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 12px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary {
  background: hsla(217, 30%, 30%, 0.4);
  color: var(--text-main);
  border: 1px solid var(--panel-border);
}
.btn-secondary:hover {
  background: hsla(217, 30%, 30%, 0.7);
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--danger);
  color: white;
  box-shadow: 0 0 12px var(--danger-glow);
}
.btn-danger:hover {
  background: hsl(353, 85%, 60%);
  transform: translateY(-2px);
}

.btn-small {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  color: var(--text-main);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 8px var(--primary-glow);
  background: rgba(0, 0, 0, 0.35);
}

.form-select option {
  background: hsl(222, 47%, 11%);
  color: var(--text-main);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-disponible, .badge-limpia_y_lista {
  background: var(--success-glow);
  color: var(--success);
  border: 1px solid var(--success);
}

.badge-ocupada, .badge-en_uso {
  background: var(--danger-glow);
  color: var(--danger);
  border: 1px solid var(--danger);
}

.badge-en_limpieza {
  background: hsla(199, 89%, 48%, 0.15);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.badge-en_mantenimiento, .badge-no_show, .badge-cotizada {
  background: var(--warning-glow);
  color: var(--warning);
  border: 1px solid var(--warning);
}

.badge-fuera_de_servicio, .badge-cancelada {
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid var(--panel-border);
}

.badge-confirmada, .badge-interes_real {
  background: hsla(263, 70%, 50%, 0.15);
  color: hsl(263, 90%, 75%);
  border: 1px solid hsl(263, 70%, 50%);
}

.badge-finalizada {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--panel-border);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover {
  color: var(--danger);
}

/* --- CLIENT WEB INTERFACE (index.html) --- */
.client-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.search-widget {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) auto;
  gap: 20px;
  align-items: flex-end;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.room-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.room-card-image {
  height: 200px;
  background: linear-gradient(185deg, var(--panel-border) 0%, rgba(0,0,0,0.4) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--panel-border);
}

.room-card-image i {
  font-size: 3rem;
  color: var(--panel-border-hover);
}

.room-price-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

.room-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.room-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.room-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- ADMIN PANEL LAYOUT (admin.html) --- */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-width);
  background: hsla(222, 47%, 8%, 0.8);
  backdrop-filter: var(--glass-blur);
  border-right: 1px solid var(--panel-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 40px;
  background: linear-gradient(to right, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.menu-item:hover, .menu-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.menu-item.active {
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid var(--panel-border-hover);
}

.sidebar-user {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.user-info-box {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.user-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.admin-main {
  margin-left: var(--sidebar-width);
  flex-grow: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 20px;
}

.admin-title-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Login Page Overlay if not logged in */
.login-container {
  display: none;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

/* Dashboard Statistics Widgets */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-top: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--panel-border);
  color: var(--primary);
}

/* Tables styling */
.table-container {
  overflow-x: auto;
  margin-top: 16px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.custom-table th {
  padding: 14px 16px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 2px solid var(--panel-border);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.custom-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--panel-border);
  color: var(--text-main);
}

.custom-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* Timeline/Occupancy grid for admin */
.timeline-scroller {
  overflow-x: auto;
  margin-top: 16px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 180px repeat(30, 60px);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: rgba(0,0,0,0.15);
}

.timeline-header-cell {
  background: rgba(0,0,0,0.25);
  padding: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  border-right: 1px solid var(--panel-border);
  border-bottom: 2px solid var(--panel-border);
}

.timeline-header-cell.room-col {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 10;
  background: hsl(222, 47%, 15%);
}

.timeline-cell {
  padding: 10px;
  border-right: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  position: relative;
}

.timeline-cell.room-col {
  font-weight: 600;
  justify-content: flex-start;
  position: sticky;
  left: 0;
  z-index: 10;
  background: hsl(222, 47%, 15%);
}

.timeline-booked-block {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  border-radius: 4px;
  background: var(--danger-glow);
  border: 1px solid var(--danger);
  color: var(--danger);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-empty-block {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.timeline-empty-block:hover {
  background: var(--success-glow);
}

/* Reports layout styling */
.reports-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--panel-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 12px 24px;
  color: var(--text-main);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.3s forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); opacity: 1; }
}

.toast.success {
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left: 4px solid var(--danger);
}

.toast.warning {
  border-left: 4px solid var(--warning);
}

/* --- ADMINISTRATIVE CALENDAR & MAP STYLES --- */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  min-width: 700px;
}

.calendar-day-header {
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 10px;
  font-weight: 700;
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--panel-border);
  border-right: 1px solid var(--panel-border);
}
.calendar-day-header:last-child {
  border-right: none;
}

.calendar-day-cell {
  min-height: 115px;
  padding: 10px;
  border-bottom: 1px solid var(--panel-border);
  border-right: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  background: var(--panel-bg);
  cursor: pointer;
  transition: var(--transition);
}
.calendar-day-cell:nth-child(7n) {
  border-right: none;
}
.calendar-day-cell:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--panel-border-hover);
}

.calendar-day-cell.other-month {
  opacity: 0.35;
  background: rgba(0, 0, 0, 0.1);
}

.calendar-day-cell.today {
  border: 1px solid var(--primary);
  box-shadow: inset 0 0 10px var(--primary-glow);
}

.calendar-day-cell.active-drilldown {
  background: var(--primary-glow);
  border: 1px solid var(--primary-hover) !important;
}

.calendar-day-num {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-day-summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
  justify-content: flex-end;
}

.calendar-summary-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-summary-badge.cotizada {
  background: var(--warning-glow);
  color: var(--warning);
  border: 1px solid hsla(35, 92%, 47%, 0.3);
}

.calendar-summary-badge.interes_real {
  background: hsla(263, 70%, 50%, 0.15);
  color: hsl(263, 90%, 75%);
  border: 1px solid hsla(263, 70%, 50%, 0.3);
}

.calendar-summary-badge.confirmada {
  background: hsla(199, 89%, 48%, 0.15);
  color: hsl(199, 90%, 75%);
  border: 1px solid hsla(199, 89%, 48%, 0.3);
}

.calendar-summary-badge.en_uso {
  background: var(--danger-glow);
  color: var(--danger);
  border: 1px solid hsla(353, 76%, 53%, 0.3);
}

.calendar-summary-badge.no_show {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 1px solid var(--panel-border);
}

.drilldown-buildings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.drilldown-building-card {
  padding: 20px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.drilldown-building-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 8px;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drilldown-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.drilldown-room-box {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.drilldown-room-box:hover {
  transform: translateY(-2px);
  border-color: var(--panel-border-hover);
}

.drilldown-room-number {
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drilldown-room-type {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.drilldown-room-status-badge {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.drilldown-room-box.disponible {
  border-left: 4px solid var(--success);
}
.drilldown-room-box.disponible .drilldown-room-status-badge {
  background: var(--success-glow);
  color: var(--success);
}

.drilldown-room-box.confirmada {
  border-left: 4px solid hsl(263, 70%, 50%);
  background: hsla(263, 70%, 50%, 0.05);
}
.drilldown-room-box.confirmada .drilldown-room-status-badge {
  background: hsla(263, 70%, 50%, 0.15);
  color: hsl(263, 90%, 75%);
}

.drilldown-room-box.en_uso {
  border-left: 4px solid var(--danger);
  background: hsla(353, 76%, 53%, 0.05);
}
.drilldown-room-box.en_uso .drilldown-room-status-badge {
  background: var(--danger-glow);
  color: var(--danger);
}

.drilldown-room-box.no_show {
  border-left: 4px solid var(--warning);
  background: hsla(35, 92%, 47%, 0.05);
}
.drilldown-room-box.no_show .drilldown-room-status-badge {
  background: var(--warning-glow);
  color: var(--warning);
}

.drilldown-room-box.fuera_de_servicio, .drilldown-room-box.en_mantenimiento {
  border-left: 4px solid var(--muted);
  opacity: 0.6;
}
.drilldown-room-box.fuera_de_servicio .drilldown-room-status-badge, .drilldown-room-box.en_mantenimiento .drilldown-room-status-badge {
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}

.drilldown-guest-name {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--text-main);
  margin-top: 4px;
}

/* Sticky Occupancy Summary Bar in Admin Panel */
.sticky-summary-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 15px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.summary-card-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.summary-card-item.clickable {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
}
.summary-card-item.clickable:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.summary-card-item.clickable.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.25);
}

.summary-card-item span {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sticky-summary-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    gap: 12px;
  }
}

/* Fullscreen Group Booking Page Layout */
.group-view-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-top: 20px;
}

.group-view-header {
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 20px;
  width: 100%;
}

@media (max-width: 992px) {
  .group-view-layout {
    grid-template-columns: 1fr;
  }
}

/* Filters Widget */
.filters-widget {
  margin-bottom: 30px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.filters-widget .form-group {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .filters-widget {
    flex-direction: column;
    align-items: stretch;
  }
  .filters-widget button {
    width: 100%;
    margin-top: 8px;
  }
}
