/* Main Layout Styles - matches existing design */
.layout {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.container__wrap {
  padding-left: 0;
  padding-top: 50px;
  padding-bottom: 0;
  min-height: 100vh;
  transition: padding-left 0.3s, background-color 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.theme-light .container__wrap {
  background: #f2f4f7;
}

.theme-dark .container__wrap {
  background: #2a2a31;
}

/* Desktop: Add padding when sidebar is open */
@media screen and (min-width: 576px) {
  .container__wrap {
    padding-left: 250px;
  }
}

/* When layout is collapsed, reduce padding */
.layout.layout--collapse > .container__wrap {
  padding-left: 0;
}

@media screen and (min-width: 576px) {
  .layout.layout--collapse > .container__wrap {
    padding-left: 60px;
  }
}

.container {
  flex: 1;
  padding: 20px;
  width: 100%;
  max-width: 1630px;
  margin: 0 auto;
  transition: width 0.3s, max-width 0.3s, background-color 0.3s ease;
  box-sizing: border-box;
}

/* Card styles reset to Bootstrap defaults - removed custom overrides */

@media screen and (min-width: 768px) {
  .container {
    width: 100%;
    max-width: 1630px;
  }
}

/* Responsive adjustments for cards */
.layout.layout--collapse .container {
  width: 100%;
}

/* Remove padding from topbar avatar */
.topbar__avatar {
  padding: 0 !important;
}

/* Topbar profile styles */
.topbar__profile {
  margin-bottom: 0;
  margin-left: 20px;
}

/* Remove margin from row */
.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Logo alignment fix */
.topbar__logo {
  height: 30px;
  margin: auto 0px;
  text-decoration: none;
  line-height: 1;
}

.topbar__logo img {
  width: 40%;
  object-fit: contain;
  object-position: left center;
  display: block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

/* Remove underline from sidebar links */
.sidebar__block a {
  text-decoration: none;
  color: inherit;
}

.sidebar__block a:hover {
  text-decoration: none;
}

/* Ensure collapse dropdowns are hidden by default */
.topbar__collapse-content.collapse:not(.show) {
  display: none;
}

.topbar__collapse-content.collapse.show {
  display: block;
}

.topbar__menu-wrap.collapse:not(.show) {
  display: none;
}

.topbar__menu-wrap.collapse.show {
  display: block;
}

/* Global theme transitions for smooth theme switching */
.theme-light,
.theme-dark {
  transition: background-color 0.3s ease;
}

/* Smooth transitions for sidebar and topbar */
.sidebar,
.topbar {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Smooth transitions for text colors */
.sidebar__link-title,
.topbar__hotel-name,
.topbar__hotel-details {
  transition: color 0.3s ease;
}

/* Remove padding from Material-UI Toolbar */
.css-1brtlba {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Apply width to Material-UI generated class */
.css-1942dxq {
  width: 20% !important;
}

/* Remove min-height and padding from Material-UI Toolbar */
.css-i6s8oy {
  min-height: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove min-height from all MUI Toolbar instances */
.MuiToolbar-root {
  min-height: 0 !important;
}

/* Remove min-height at various breakpoints */
@media (min-width: 0px) {
  @media (orientation: landscape) {
    .css-i6s8oy,
    .MuiToolbar-root {
      min-height: 0 !important;
    }
  }
}

@media (min-width: 600px) {
  .css-i6s8oy,
  .MuiToolbar-root {
    min-height: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Login Page Styles - Minimal CSS, using Material UI styling */

/* Dashboard Header Styles - matches existing design */
.dashboard-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 0;
  margin-top: 0;
}

/* Standard reduced spacing from topbar for all pages */
.main-dashboard,
.dashboards {
  padding-top: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure proper alignment */
.dashboards .row {
  margin-left: 0;
  margin-right: 0;
}

.dashboards .col-md-12,
.dashboards .col-12 {
  padding-left: 15px;
  padding-right: 15px;
}

.dashboard-nav-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary, #212121);
}

.dashboard-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-nav-separator {
  color: var(--text-secondary, #757575);
  margin: 0 8px;
}

.dashboard-nav-link {
  color: #4ce1b6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dashboard-nav-link:hover {
  color: #3dd1a3;
  text-decoration: none;
}

.dashboard-control-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  flex-wrap: wrap;
}

/* Theme-aware support for control panel */
.theme-dark .dashboard-control-panel {
  color: #ddd;
}

.theme-light .dashboard-control-panel {
  color: #495057;
}

.dashboard-date-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-date-nav {
  background: none;
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dashboard-date-nav:hover {
  background-color: var(--bg-tertiary, #e0e0e0);
}

.dashboard-date-input {
  padding: 8px 12px;
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: 4px;
  min-width: 200px;
}

.dashboard-advanced-link {
  color: #4ce1b6;
  text-decoration: none;
  font-weight: 500;
}

.dashboard-advanced-link:hover {
  color: #3dd1a3;
  text-decoration: none;
}

.dashboard-new-btn {
  margin-left: auto;
}


/* Landing Page Styles - matches original design */
.landing-page {
  padding: 20px 0;
}

.page-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.page-subhead {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* Ensure container wrap has proper padding for sidebar */
.landing-page-body .container__wrap {
  padding-left: 0; /* Default for mobile */
  padding-top: 50px;
  padding-bottom: 0;
  min-height: 100vh;
  transition: padding-left 0.3s; /* Smooth transition for sidebar collapse */
}

/* Desktop styles for container wrap */
@media screen and (min-width: 576px) {
  .landing-page-body .container__wrap {
    padding-left: 250px; /* Default sidebar width */
  }
}

/* Adjust container wrap padding when sidebar is collapsed */
.landing-page-body .layout.layout--collapse .container__wrap {
  padding-left: 0; /* Reset for mobile when collapsed */
}

@media screen and (min-width: 576px) {
  .landing-page-body .layout.layout--collapse .container__wrap {
    padding-left: 60px; /* Collapsed sidebar width */
  }
}

/* Add border after Hotels menu item and separate Users on landing page */
.landing-page-body .sidebar__block a:nth-child(2) {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.landing-page-body .sidebar__block a:nth-child(3) {
  margin-top: 8px;
  padding-top: 8px;
}

/* Remove padding from topbar avatar */
.landing-page-body .topbar__avatar {
  padding: 0 !important;
}

/* Topbar profile styles */
.landing-page-body .topbar__profile {
  margin-bottom: 0;
  margin-left: 20px;
}

/* Remove margin from row */
.landing-page-body .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Toolbar padding on landing page */
@media (min-width: 600px) {
  .css-xmpbr9-MuiToolbar-root,
  .MuiToolbar-root {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}



/* Booking Calendar Styles */
.booking-calendar-container {
  width: 100%;
}

.booking-calendar-grid {
  min-width: 100%;
  font-family: 'Roboto', sans-serif;
  /* Background color removed */
}

/* Calendar Header */
.booking-calendar-header {
  display: grid;
  grid-template-columns: 180px repeat(var(--date-columns, 7), 1fr);
  background: linear-gradient(135deg, #f2f4f7 0%, #e8ecf1 100%);
  border-bottom: 2px solid #ddd;
  font-weight: 700;
  padding: 0;
}

.booking-calendar-header-cell {
  text-align: center;
  padding: 12px;
  text-transform: uppercase;
  font-size: 12px;
  color: #646777;
}

/* Calendar Row */
.booking-calendar-row {
  display: grid;
  grid-template-columns: 180px repeat(var(--date-columns, 7), 1fr);
  border-bottom: 1px solid #e0e0e0;
  min-height: 60px;
}

.booking-calendar-room-cell {
  padding: 12px;
  font-weight: 600;
  background-color: #fafafa;
  border-right: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.booking-calendar-day-cell {
  padding: 12px;
  border-right: 1px solid #e0e0e0;
  min-height: 60px;
  position: relative;
}

/* Booking Block */
.booking-block {
  background-color: #2196f3;
  color: white;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  margin: 2px;
}

.booking-block-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.booking-block-code {
  font-size: 10px;
  opacity: 0.9;
}

/* Room Type Section (Ultra View) */
.room-type-section {
  margin-bottom: 32px;
}

/* Room View Card Styles - Theme Aware */
.room-view-card {
  background-color: transparent !important;
  box-shadow: none !important;
  border: 1px solid !important;
}

.theme-light .room-view-card {
  border-color: #dee2e6 !important;
}

.theme-dark .room-view-card {
  border-color: #333246 !important;
}

.room-view-card .MuiCardContent-root {
  padding: 16px !important;
}

/* Theme-aware text colors for room view */
.theme-light .room-view-card .MuiTypography-root {
  color: #495057;
}

.theme-dark .room-view-card .MuiTypography-root {
  color: #ddd;
}

/* Room view header and stats */
.room-view-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-view-type-name {
  font-weight: 600;
  font-size: 16px;
}

.theme-light .room-view-type-name {
  color: #495057;
}

.theme-dark .room-view-type-name {
  color: #ddd;
}

.room-view-stats {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.theme-light .room-view-stats {
  color: #6c757d;
}

.theme-dark .room-view-stats {
  color: #999999;
}

.theme-light .booking-calendar-header {
  background: linear-gradient(135deg, #f2f4f7 0%, #e8ecf1 100%);
  color: #646777;
}

.theme-dark .booking-calendar-header {
  background: linear-gradient(135deg, #2a2a31 0%, #232329 100%);
  color: #ddd;
}

.theme-light .booking-calendar-room-cell {
  background-color: #fafafa;
  color: #212121;
  border-right: 1px solid #e0e0e0;
}

.theme-dark .booking-calendar-room-cell {
  background-color: #2a2a31;
  color: #ddd;
  border-right: 1px solid #333246;
}

.theme-light .booking-calendar-day-cell {
  border-right: 1px solid #e0e0e0;
  background-color: transparent;
}

.theme-dark .booking-calendar-day-cell {
  border-right: 1px solid #333246;
  background-color: transparent;
}

.theme-light .booking-calendar-row {
  border-bottom: 1px solid #e0e0e0;
}

.theme-dark .booking-calendar-row {
  border-bottom: 1px solid #333246;
}

/* Ultra View Styles */
.ultra-room-type-card {
  margin-bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.ultra-room-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

.ultra-room-type-name {
  font-weight: 600;
  font-size: 16px;
  color: #495057;
}

.ultra-room-type-stats {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6c757d;
}

.ultra-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  padding: 16px;
}

.ultra-room-box {
  min-height: 120px;
  padding: 12px;
  border-radius: 4px;
  border: 2px solid;
  position: relative;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
}

.ultra-room-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ultra-room-box.status-vacant {
  border-color: #4caf50;
  background-color: #f1f8f4;
}

.ultra-room-box.status-occupied {
  border-color: #ff9800;
  background-color: #fff3e0;
}

.ultra-room-box.status-booked {
  border-color: #2196f3;
  background-color: #e3f2fd;
}

.ultra-room-box.status-blocked {
  border-color: #f44336;
  background-color: #ffebee;
}

.ultra-room-number {
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  margin-bottom: 4px;
}

.ultra-guest-name {
  font-weight: 600;
  margin-top: 4px;
  color: #212529;
  font-size: 14px;
}

.ultra-room-meta {
  font-size: 0.85em;
  opacity: 0.8;
  margin-top: 2px;
  color: #6c757d;
}

.ultra-status-message {
  font-weight: 600;
  color: #f44336;
  margin-top: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

.ultra-room-status {
  font-size: 0.85em;
  opacity: 0.7;
  margin-top: 4px;
  color: #6c757d;
}

.ultra-group-badge {
  font-size: 0.75em;
  color: #9c27b0;
  font-weight: 600;
  margin-top: 2px;
}

.ultra-legend {
  margin-bottom: 24px;
  padding: 16px 0;
  /* No background or border - transparent */
}

.legend-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  /* Theme-aware text color */
  color: #6c757d;
  font-size: 14px;
}

.theme-dark .legend-item {
  color: #999999;
}

.theme-light .legend-item {
  color: #6c757d;
}

.legend-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

/* Status colors remain the same for both themes */
.legend-item.status-vacant .dot {
  background-color: #4caf50;
}

.legend-item.status-occupied .dot {
  background-color: #ff9800;
}

.legend-item.status-booked .dot {
  background-color: #2196f3;
}

.legend-item.status-blocked .dot {
  background-color: #f44336;
}

/* Dashboard Control Panel */
.dashboard-control-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 0px;
  /* No background color - transparent */
  /* background-color: var(--bg-secondary, #f5f5f5); */
  flex-wrap: wrap;
}

/* Theme-aware support for control panel */
.theme-dark .dashboard-control-panel {
  color: #ddd;
}

.theme-light .dashboard-control-panel {
  color: #495057;
}

.dashboard-date-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Date picker navigation buttons - Theme aware */
.calendar-nav-button {
  border-radius: 4px !important;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border: 1px solid !important;
  transition: all 0.3s ease !important;
}

/* Light theme for nav buttons */
.theme-light .calendar-nav-button {
  background-color: #f5f5f5 !important;
  border-color: #ddd !important;
  color: #495057 !important;
}

.theme-light .calendar-nav-button:hover {
  background-color: #e0e0e0 !important;
  border-color: #bbb !important;
}

/* Dark theme for nav buttons */
.theme-dark .calendar-nav-button {
  background-color: #38373f !important;
  border-color: #333246 !important;
  color: #ddd !important;
}

.theme-dark .calendar-nav-button:hover {
  background-color: #4a4951 !important;
  border-color: #444350 !important;
}

/* Date picker input field - Theme aware */
.calendar-date-picker .MuiOutlinedInput-root {
  height: 36px;
  font-size: 14px;
}

.theme-light .calendar-date-picker .MuiOutlinedInput-root {
  background-color: #ffffff;
  color: #495057;
}

.theme-light .calendar-date-picker .MuiOutlinedInput-root fieldset {
  border-color: #ddd;
}

.theme-light .calendar-date-picker .MuiOutlinedInput-root:hover fieldset {
  border-color: #bbb;
}

.theme-light .calendar-date-picker .MuiOutlinedInput-root.Mui-focused fieldset {
  border-color: #4ce1b6;
}

.theme-dark .calendar-date-picker .MuiOutlinedInput-root {
  background-color: #2a2a31;
  color: #ddd;
}

.theme-dark .calendar-date-picker .MuiOutlinedInput-root fieldset {
  border-color: #333246;
}

.theme-dark .calendar-date-picker .MuiOutlinedInput-root:hover fieldset {
  border-color: #444350;
}

.theme-dark .calendar-date-picker .MuiOutlinedInput-root.Mui-focused fieldset {
  border-color: #4ce1b6;
}

.calendar-date-picker .MuiInputBase-input {
  padding: 8px 12px;
  text-align: center;
}

.dashboard-control-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.dashboard-control-right {
  display: flex;
  align-items: center;
}

/* Material-UI Select theme-aware styling */
.theme-dark .dashboard-control-right .MuiOutlinedInput-root {
  color: #ddd;
}

.theme-dark .dashboard-control-right .MuiOutlinedInput-root fieldset {
  border-color: #333246;
}

.theme-dark .dashboard-control-right .MuiOutlinedInput-root:hover fieldset {
  border-color: #444350;
}

.theme-dark .dashboard-control-right .MuiOutlinedInput-root.Mui-focused fieldset {
  border-color: #4ce1b6;
}

.theme-dark .dashboard-control-right .MuiInputLabel-root {
  color: #999999;
}

.theme-dark .dashboard-control-right .MuiInputLabel-root.Mui-focused {
  color: #4ce1b6;
}

.theme-light .dashboard-control-right .MuiOutlinedInput-root {
  color: #495057;
}

.theme-light .dashboard-control-right .MuiOutlinedInput-root fieldset {
  border-color: #ddd;
}

.theme-light .dashboard-control-right .MuiOutlinedInput-root:hover fieldset {
  border-color: #bbb;
}

.theme-light .dashboard-control-right .MuiOutlinedInput-root.Mui-focused fieldset {
  border-color: #4ce1b6;
}

.theme-light .dashboard-control-right .MuiInputLabel-root {
  color: #6c757d;
}

.theme-light .dashboard-control-right .MuiInputLabel-root.Mui-focused {
  color: #4ce1b6;
}

.view-toggle-buttons {
  display: flex;
  gap: 8px;
}

.view-toggle-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Default state: Blue */
  background-color: #2196f3;
  color: #ffffff;
}

/* Light theme */
.theme-light .view-toggle-btn {
  background-color: #2196f3;
  color: #ffffff;
}

.theme-light .view-toggle-btn:hover {
  background-color: #1976d2;
}

/* Dark theme */
.theme-dark .view-toggle-btn {
  background-color: #1976d2;
  color: #ffffff;
}

.theme-dark .view-toggle-btn:hover {
  background-color: #1565c0;
}

/* Active state: Light green */
.view-toggle-btn.active {
  background-color: #81c784 !important;
  color: #ffffff !important;
}

.theme-light .view-toggle-btn.active {
  background-color: #81c784 !important;
}

.theme-dark .view-toggle-btn.active {
  background-color: #66bb6a !important;
}

.view-toggle-btn.active:hover {
  background-color: #66bb6a !important;
}

.theme-dark .view-toggle-btn.active:hover {
  background-color: #4caf50 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .booking-calendar-header,
  .booking-calendar-row {
    grid-template-columns: 120px repeat(var(--date-columns, 7), 1fr);
  }
  
  .booking-calendar-header-cell,
  .booking-calendar-room-cell,
  .booking-calendar-day-cell {
    font-size: 11px;
    padding: 8px;
  }

  .dashboard-control-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-control-center {
    justify-content: flex-start;
  }
}


/* DataTable Component Styles - Enhanced Material Design */

/* Badge styles for status indicators - matches design system */
.data-table-cell .badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
}

.badge-success {
  background-color: #4ce1b6;
  color: white;
}

.badge-warning {
  background-color: #f6da6e;
  color: white;
}

.badge-danger {
  background-color: #ff4861;
  color: white;
}

.badge-info {
  background-color: #2196f3;
  color: white;
}

.badge-secondary {
  background-color: #dddddd;
  color: white;
}

.badge-primary {
  background-color: #70bbfd;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .data-table-container {
    margin-top: 8px;
  }
}


/* BookingList Component Styles */
.booking-list-container {
  padding: 16px;
}

.filters-section {
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}


/* InventoryList Component Styles - matches CustomerList style */

.progress-wrap {
  position: relative;
  margin: 0;
}

.progress-wrap--middle {
  margin: 0 auto;
  max-width: 200px;
}

.progress-wrap--yellow .progress-bar {
  background-color: #ffc107;
}

.progress-wrap--blue .progress-bar {
  background-color: #2196f3;
}

.progress-wrap--pink .progress-bar {
  background-color: #e91e63;
}

.progress-wrap--violet .progress-bar {
  background-color: #9c27b0;
}

.progress {
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.progress__label {
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}


/* PaymentList Component Styles */
.payment-list-container {
  padding: 16px;
}

.filters-section {
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}


/* CustomerList Component Styles - only component-specific styles */
/* Note: All table styles are in DataTable.css for reusability */



/*# sourceMappingURL=bundle.css.map*/