/**
 * Hotel Management System - Custom Theme
 * 5 Primary Colors:
 * 1. Primary Blue: #2563eb (Blue-600) - Main actions, links, primary buttons
 * 2. Secondary Teal: #14b8a6 (Teal-500) - Secondary actions, highlights
 * 3. Success Green: #10b981 (Green-500) - Success states, confirmations
 * 4. Warning Orange: #f59e0b (Orange-500) - Warnings, alerts
 * 5. Danger Red: #ef4444 (Red-500) - Errors, delete actions
 */

:root {
  /* Primary Colors */
  --hotel-primary: #2563eb;
  --hotel-primary-dark: #1e40af;
  --hotel-primary-light: #3b82f6;
  --hotel-primary-lighter: #dbeafe;
  
  --hotel-secondary: #14b8a6;
  --hotel-secondary-dark: #0d9488;
  --hotel-secondary-light: #2dd4bf;
  --hotel-secondary-lighter: #ccfbf1;
  
  --hotel-success: #10b981;
  --hotel-success-dark: #059669;
  --hotel-success-light: #34d399;
  --hotel-success-lighter: #d1fae5;
  
  --hotel-warning: #f59e0b;
  --hotel-warning-dark: #d97706;
  --hotel-warning-light: #fbbf24;
  --hotel-warning-lighter: #fef3c7;
  
  --hotel-danger: #ef4444;
  --hotel-danger-dark: #dc2626;
  --hotel-danger-light: #f87171;
  --hotel-danger-lighter: #fee2e2;
  
  /* Light Mode Colors */
  --hotel-bg-primary: #ffffff;
  --hotel-bg-secondary: #f8fafc;
  --hotel-bg-tertiary: #f1f5f9;
  --hotel-text-primary: #1e293b;
  --hotel-text-secondary: #64748b;
  --hotel-text-muted: #94a3b8;
  --hotel-border-color: #e2e8f0;
  --hotel-card-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --hotel-card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Dark Mode Colors */
.dark-style,
[data-theme="dark"] {
  --hotel-bg-primary: #1e293b;
  --hotel-bg-secondary: #0f172a;
  --hotel-bg-tertiary: #334155;
  --hotel-text-primary: #f1f5f9;
  --hotel-text-secondary: #cbd5e1;
  --hotel-text-muted: #94a3b8;
  --hotel-border-color: #334155;
  --hotel-card-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  --hotel-card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  
  /* Adjust primary colors for dark mode */
  --hotel-primary-lighter: rgba(37, 99, 235, 0.2);
  --hotel-secondary-lighter: rgba(20, 184, 166, 0.2);
  --hotel-success-lighter: rgba(16, 185, 129, 0.2);
  --hotel-warning-lighter: rgba(245, 158, 11, 0.2);
  --hotel-danger-lighter: rgba(239, 68, 68, 0.2);
}

/* Base Styles */
body {
  background-color: var(--hotel-bg-secondary);
  color: var(--hotel-text-primary);
}

/* 3D Hotel Floors Page Background - Dark Mode */
.layout-wrapper.layout-content-navbar,
.light-style body,
[data-theme="theme-default"] body
.dark-style body,
[data-theme="dark"] body {
  background: linear-gradient(135deg, #1e293b 0%, #334155 25%, #1e3a5f 50%, #1e293b 75%, #0f172a 100%) !important;
  position: relative;
}
.light-style body::before,
[data-theme="theme-default"] body::before
.dark-style body::before,
[data-theme="dark"] body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: hotelPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes hotelPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Card Component */
.hotel-card {
  background-color: var(--hotel-bg-primary);
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.5rem;
  box-shadow: var(--hotel-card-shadow);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.hotel-card:hover {
  box-shadow: var(--hotel-card-shadow-hover);
  transform: translateY(-2px);
}

.hotel-card-header {
  border-bottom: 1px solid var(--hotel-border-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.hotel-card-title {
  color: var(--hotel-text-primary);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
}

.hotel-card-body {
  color: var(--hotel-text-secondary);
}

/* Button Components */
.hotel-btn-primary {
  background-color: var(--hotel-primary);
  border-color: var(--hotel-primary);
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.hotel-btn-primary:hover {
  background-color: var(--hotel-primary-dark);
  border-color: var(--hotel-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.hotel-btn-secondary {
  background-color: var(--hotel-secondary);
  border-color: var(--hotel-secondary);
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.hotel-btn-secondary:hover {
  background-color: var(--hotel-secondary-dark);
  border-color: var(--hotel-secondary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.3);
}

.hotel-btn-success {
  background-color: var(--hotel-success);
  border-color: var(--hotel-success);
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.hotel-btn-success:hover {
  background-color: var(--hotel-success-dark);
  border-color: var(--hotel-success-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

.hotel-btn-warning {
  background-color: var(--hotel-warning);
  border-color: var(--hotel-warning);
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.hotel-btn-warning:hover {
  background-color: var(--hotel-warning-dark);
  border-color: var(--hotel-warning-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.hotel-btn-danger {
  background-color: var(--hotel-danger);
  border-color: var(--hotel-danger);
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.hotel-btn-danger:hover {
  background-color: var(--hotel-danger-dark);
  border-color: var(--hotel-danger-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
}

.hotel-btn-outline-primary {
  background-color: transparent;
  border: 2px solid var(--hotel-primary);
  color: var(--hotel-primary);
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hotel-btn-outline-primary:hover {
  background-color: var(--hotel-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Table Component */
.hotel-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--hotel-bg-primary);
  border-radius: 0.5rem;
  overflow: hidden;
}

.hotel-table thead {
  background-color: var(--hotel-bg-tertiary);
}

.hotel-table thead th {
  padding: 1rem;
  text-align: right;
  font-weight: 600;
  color: var(--hotel-text-primary);
  border-bottom: 2px solid var(--hotel-border-color);
}

.hotel-table tbody tr {
  border-bottom: 1px solid var(--hotel-border-color);
  transition: background-color 0.2s ease;
}

.hotel-table tbody tr:hover {
  background-color: var(--hotel-bg-tertiary);
}

.hotel-table tbody td {
  padding: 1rem;
  color: var(--hotel-text-secondary);
}

/* Modal Component */
.hotel-modal {
  background-color: var(--hotel-bg-primary);
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 500px;
  width: 90%;
  margin: 2rem auto;
}

.hotel-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--hotel-border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel-modal-title {
  color: var(--hotel-text-primary);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
}

.hotel-modal-body {
  padding: 1.5rem;
  color: var(--hotel-text-secondary);
}

.hotel-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--hotel-border-color);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* Form Components */
.hotel-form-label {
  display: block;
  color: var(--hotel-text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.hotel-form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.375rem;
  background-color: var(--hotel-bg-primary);
  color: var(--hotel-text-primary);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.hotel-form-input:focus {
  outline: none;
  border-color: var(--hotel-primary);
  box-shadow: 0 0 0 3px var(--hotel-primary-lighter);
}

.hotel-form-select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.375rem;
  background-color: var(--hotel-bg-primary);
  color: var(--hotel-text-primary);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.hotel-form-select:focus {
  outline: none;
  border-color: var(--hotel-primary);
  box-shadow: 0 0 0 3px var(--hotel-primary-lighter);
}

/* Badge Component */
.hotel-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.hotel-badge-primary {
  background-color: var(--hotel-primary-lighter);
  color: var(--hotel-primary);
}

.hotel-badge-secondary {
  background-color: var(--hotel-secondary-lighter);
  color: var(--hotel-secondary);
}

.hotel-badge-success {
  background-color: var(--hotel-success-lighter);
  color: var(--hotel-success);
}

.hotel-badge-warning {
  background-color: var(--hotel-warning-lighter);
  color: var(--hotel-warning);
}

.hotel-badge-danger {
  background-color: var(--hotel-danger-lighter);
  color: var(--hotel-danger);
}

/* Alert Component */
.hotel-alert {
  padding: 1rem 1.25rem;
  border-radius: 0.375rem;
  border: 1px solid;
  margin-bottom: 1rem;
}

.hotel-alert-primary {
  background-color: var(--hotel-primary-lighter);
  border-color: var(--hotel-primary);
  color: var(--hotel-primary-dark);
}

.hotel-alert-success {
  background-color: var(--hotel-success-lighter);
  border-color: var(--hotel-success);
  color: var(--hotel-success-dark);
}

.hotel-alert-warning {
  background-color: var(--hotel-warning-lighter);
  border-color: var(--hotel-warning);
  color: var(--hotel-warning-dark);
}

.hotel-alert-danger {
  background-color: var(--hotel-danger-lighter);
  border-color: var(--hotel-danger);
  color: var(--hotel-danger-dark);
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .hotel-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .hotel-table {
    font-size: 0.875rem;
  }
  
  .hotel-table thead th,
  .hotel-table tbody td {
    padding: 0.75rem 0.5rem;
  }
  
  .hotel-modal {
    width: 95%;
    margin: 1rem auto;
  }
  
  .hotel-modal-header,
  .hotel-modal-body,
  .hotel-modal-footer {
    padding: 1rem;
  }
  
  .hotel-btn-primary,
  .hotel-btn-secondary,
  .hotel-btn-success,
  .hotel-btn-warning,
  .hotel-btn-danger,
  .hotel-btn-outline-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hotel-card-title {
    font-size: 1.125rem;
  }
  
  .hotel-table {
    font-size: 0.75rem;
  }
  
  .hotel-table thead th,
  .hotel-table tbody td {
    padding: 0.5rem 0.25rem;
  }
  
  .hotel-modal-title {
    font-size: 1.125rem;
  }
}

/* Override Bootstrap Primary Colors */
.btn-primary {
  background-color: var(--hotel-primary) !important;
  border-color: var(--hotel-primary) !important;
}

.btn-primary:hover {
  background-color: var(--hotel-primary-dark) !important;
  border-color: var(--hotel-primary-dark) !important;
}

.btn-success {
  background-color: var(--hotel-success) !important;
  border-color: var(--hotel-success) !important;
}

.btn-success:hover {
  background-color: var(--hotel-success-dark) !important;
  border-color: var(--hotel-success-dark) !important;
}

.btn-warning {
  background-color: var(--hotel-warning) !important;
  border-color: var(--hotel-warning) !important;
}

.btn-warning:hover {
  background-color: var(--hotel-warning-dark) !important;
  border-color: var(--hotel-warning-dark) !important;
}

.btn-danger {
  background-color: var(--hotel-danger) !important;
  border-color: var(--hotel-danger) !important;
}

.btn-danger:hover {
  background-color: var(--hotel-danger-dark) !important;
  border-color: var(--hotel-danger-dark) !important;
}

.text-primary {
  color: var(--hotel-primary) !important;
}

.bg-primary {
  background-color: var(--hotel-primary) !important;
}

.border-primary {
  border-color: var(--hotel-primary) !important;
}

/* ============================================
   STANDARD MODAL STYLES (For All Modals)
   ============================================ */
.modal-content {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 1rem !important;
  color: #f1f5f9 !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px) !important;
}

/* Light Mode Modal */
.light-style .modal-content,
html:not(.dark-style) .modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
}

/* Dark Mode Modal */
.dark-style .modal-content,
html.dark-style .modal-content {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #f1f5f9 !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px) !important;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1.25rem 1.5rem !important;
  background: transparent !important;
  position: relative !important;
}

.light-style .modal-header,
html:not(.dark-style) .modal-header {
  background: transparent !important;
  border-bottom-color: #e2e8f0 !important;
}

.dark-style .modal-header,
html.dark-style .modal-header {
  background: transparent !important;
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.modal-title {
  color: var(--hotel-text-primary) !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
}

.light-style .modal-title,
html:not(.dark-style) .modal-title {
  color: #1e293b !important;
}

.dark-style .modal-title,
html.dark-style .modal-title {
  color: #f1f5f9 !important;
}

.modal-body {
  padding: 1.5rem !important;
  color: var(--hotel-text-secondary) !important;
  background: transparent !important;
}

.light-style .modal-body,
html:not(.dark-style) .modal-body {
  background: transparent !important;
  color: #64748b !important;
}

.dark-style .modal-body,
html.dark-style .modal-body {
  background: transparent !important;
  color: #cbd5e1 !important;
}

.modal-body label {
  color: var(--hotel-text-primary) !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
  font-size: 0.875rem !important;
}

.light-style .modal-body label,
html:not(.dark-style) .modal-body label {
  color: #1e293b !important;
}

.dark-style .modal-body label,
html.dark-style .modal-body label {
  color: #f1f5f9 !important;
}

.modal-body .form-control {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  color: #f1f5f9 !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.625rem !important;
  transition: all 0.3s ease !important;
  font-size: 0.9375rem !important;
  backdrop-filter: blur(5px) !important;
}

.light-style .modal-body .form-control,
html:not(.dark-style) .modal-body .form-control {
  background: rgba(248, 250, 252, 0.8) !important;
  border: 2px solid #e2e8f0 !important;
  color: #1e293b !important;
  backdrop-filter: blur(5px) !important;
}

.dark-style .modal-body .form-control,
html.dark-style .modal-body .form-control {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  color: #f1f5f9 !important;
  backdrop-filter: blur(5px) !important;
}

.modal-body .form-control:focus {
  background: rgba(15, 23, 42, 0.9) !important;
  border-color: #2563eb !important;
  color: #f1f5f9 !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25), 0 4px 12px rgba(37, 99, 235, 0.2) !important;
  outline: none !important;
  transform: translateY(-1px) scale(1.01) !important;
}

.light-style .modal-body .form-control:focus,
html:not(.dark-style) .modal-body .form-control:focus {
  background: #ffffff !important;
  border-color: #2563eb !important;
  color: #1e293b !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(37, 99, 235, 0.1) !important;
}

.dark-style .modal-body .form-control:focus,
html.dark-style .modal-body .form-control:focus {
  background: rgba(15, 23, 42, 0.9) !important;
  border-color: #2563eb !important;
  color: #f1f5f9 !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25), 0 4px 12px rgba(37, 99, 235, 0.2) !important;
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 1rem 1.5rem !important;
  background: transparent !important;
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0.75rem !important;
}

.light-style .modal-footer,
html:not(.dark-style) .modal-footer {
  background: transparent !important;
  border-top-color: #e2e8f0 !important;
}

.dark-style .modal-footer,
html.dark-style .modal-footer {
  background: transparent !important;
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.dark-style .modal-backdrop,
[data-theme="dark"] .modal-backdrop,
html.dark-style .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.75) !important;
}

/* زر الإغلاق (X) - أحمر مع خلفية */
.btn-close {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  border: none !important;
  opacity: 1 !important;
  width: 2rem !important;
  height: 2rem !important;
  min-width: 2rem !important;
  min-height: 2rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3) !important;
  filter: none !important;
  transform: translate(0, 0) !important;
  transform-origin: center center !important;
  vertical-align: middle !important;
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  margin: 0 !important;
}

.btn-close::before {
  content: '✕' !important;
  color: #ffffff !important;
  font-size: 1.25rem !important;
  font-weight: bold !important;
  line-height: 1 !important;
}

.light-style .btn-close,
html:not(.dark-style) .btn-close {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  filter: none !important;
  opacity: 1 !important;
}

.dark-style .btn-close,
[data-theme="dark"] .btn-close,
html.dark-style .btn-close {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  filter: none !important;
  opacity: 1 !important;
}

.btn-close:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  transform: translate(0, 0) scale(1.15) rotate(180deg) !important;
  transform-origin: center center !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5) !important;
  opacity: 1 !important;
}

.btn-close:hover::before {
  color: #ffffff !important;
}

/* زر الحفظ - Gradient أزرق */
.modal-footer .btn-primary,
.modal-footer .btn.btn-primary,
.modal-footer button.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
  border: none !important;
  color: #ffffff !important;
  padding: 0.625rem 1.5rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4) !important;
}

.modal-footer .btn-primary:hover,
.modal-footer .btn.btn-primary:hover,
.modal-footer button.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.6) !important;
}

.modal-footer .btn-primary:active,
.modal-footer .btn.btn-primary:active,
.modal-footer button.btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px -1px rgba(37, 99, 235, 0.3) !important;
}

/* زر الإلغاء - أحمر مع gradient */
.modal-footer .btn-secondary,
.modal-footer .btn.btn-secondary,
.modal-footer button.btn-secondary {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  border: none !important;
  color: #ffffff !important;
  padding: 0.625rem 1.5rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
}

.modal-footer .btn-secondary:hover,
.modal-footer .btn.btn-secondary:hover,
.modal-footer button.btn-secondary:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.6) !important;
}

.modal-footer .btn-secondary:active,
.modal-footer .btn.btn-secondary:active,
.modal-footer button.btn-secondary:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px -1px rgba(239, 68, 68, 0.3) !important;
}

/* Force modal styles with higher specificity */
.modal.show .modal-content,
.modal.fade .modal-content {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
}

.dark-style .modal.show .modal-content,
.dark-style .modal.fade .modal-content,
html.dark-style .modal.show .modal-content,
html.dark-style .modal.fade .modal-content {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #f1f5f9 !important;
  backdrop-filter: blur(10px) !important;
}

.light-style .modal.show .modal-content,
.light-style .modal.fade .modal-content,
html:not(.dark-style) .modal.show .modal-content,
html:not(.dark-style) .modal.fade .modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 0.5rem !important;
    max-width: calc(100% - 1rem) !important;
  }
  
  .modal-content {
    border-radius: 0.75rem !important;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem !important;
  }
  
  .modal-title {
    font-size: 1.1rem !important;
  }
  
  .modal-footer {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  
  .modal-footer .btn-primary,
  .modal-footer .btn-secondary,
  .modal-footer .btn.btn-primary,
  .modal-footer .btn.btn-secondary,
  .modal-footer button.btn-primary,
  .modal-footer button.btn-secondary {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  .modal-dialog {
    margin: 0.25rem !important;
    max-width: calc(100% - 0.5rem) !important;
  }
  
  .modal-body .form-control {
    font-size: 1rem !important;
    padding: 0.625rem 0.875rem !important;
  }
  
  .btn-close {
    width: 1.75rem !important;
    height: 1.75rem !important;
  }
  
  .btn-close::before {
    font-size: 1.125rem !important;
  }
}

/* ============================================
   STANDARD FLOOR CARDS STYLES (For Hotel Floors)
   ============================================ */
.itemCards {
  /* Transparent Container for 3D Effect */
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: 100% !important;
  box-shadow: none !important;
}

/* Light Mode Container */
.light-style .itemCards,
html:not(.dark-style) .itemCards {
  background: transparent !important;
  box-shadow: none !important;
}

/* Grid Container الرئيسي - 3D Hotel Design */
.card.itemCards:has(.types) {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 30px !important;
  padding: 40px !important;
  align-items: stretch !important;
  perspective: 1000px !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Container الداخلي - يخلي الـ children يطلعوا مباشرة في الـ Grid */
.card.itemCards .types,
.card.itemCards > .card.itemCards {
  display: contents !important;
}

.oneItem {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 280px !important;
  /* 3D Glass Morphism Style */
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(51, 65, 85, 0.7)) !important;
  backdrop-filter: blur(20px) !important;
  border: 2px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  margin: 0 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  overflow: hidden !important;
  /* 3D Deep Shadow */
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.05),
    inset 0 -4px 20px rgba(0, 0, 0, 0.4) !important;
  padding: 40px 30px !important;
  position: relative !important;
  transform-style: preserve-3d !important;
}

/* Radial Glow Background */
.oneItem::before {
  content: '' !important;
  position: absolute !important;
  inset: -50% !important;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  display: block !important;
}

.oneItem::after {
  display: none !important;
}

.oneItem:hover {
  /* 3D Lift Effect */
  transform: translateY(-10px) !important;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    inset 0 -4px 20px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
}

/* Light Mode - 3D Glass */
.light-style .oneItem,
html:not(.dark-style) .oneItem {
  background: linear-gradient(135deg, rgba(224, 229, 236, 0.9), rgba(203, 213, 225, 0.7)) !important;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    inset 0 -4px 20px rgba(0, 0, 0, 0.1) !important;
}

.light-style .oneItem:hover,
html:not(.dark-style) .oneItem:hover {
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.9),
    inset 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
}

.oneItem .text-center {
  text-align: center !important;
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}

.oneItem .text-center h6 {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  margin-bottom: 8px !important;
  text-transform: none !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  text-shadow: none !important;
  z-index: 1 !important;
}

.oneItem:hover .text-center h6 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.oneItem .text-center h5 {
  font-size: 4rem !important;
  font-weight: bold !important;
  margin: 0 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  transition: all 0.3s ease !important;
  color: #818cf8 !important;
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.6) !important;
  z-index: 1 !important;
}

.oneItem:hover .text-center h5 {
  color: #a5b4fc !important;
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.8) !important;
}

/* Light Mode Text */
.light-style .oneItem .text-center h6,
html:not(.dark-style) .oneItem .text-center h6 {
  color: rgba(71, 85, 105, 0.6) !important;
}

.light-style .oneItem .text-center h5,
html:not(.dark-style) .oneItem .text-center h5 {
  color: #6366f1 !important;
  text-shadow: 0 0 20px rgba(99, 102, 241, 0.3) !important;
}

.light-style .oneItem:hover .text-center h5,
html:not(.dark-style) .oneItem:hover .text-center h5 {
  color: #818cf8 !important;
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.5) !important;
}

.oneItem .image-icon {
  width: 120px !important;
  height: 120px !important;
  margin: 0 0 20px 0 !important;
  position: relative !important;
  transform-style: preserve-3d !important;
  z-index: 1 !important;
  transition: all 0.3s ease !important;
  /* Golden Hexagon Style */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%) !important;
  background: linear-gradient(135deg, #d4a574, #c9941f, #f4d03f) !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3) !important;
  filter: none !important;
}

.oneItem:hover .image-icon {
  transform: scale(1.1) translateZ(20px) !important;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4) !important;
}

/* Light Mode Icon */
.light-style .oneItem .image-icon,
html:not(.dark-style) .oneItem .image-icon {
  background: linear-gradient(135deg, #e5c68f, #d4a766, #f4d96f) !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2) !important;
}

.light-style .oneItem:hover .image-icon,
html:not(.dark-style) .oneItem:hover .image-icon {
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3) !important;
}

/* Add New Floor Card (Plus Icon) - 3D Glass Style */
.oneItem.CreateNewRoom {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(51, 65, 85, 0.3)) !important;
  border: 2px dashed rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.03),
    inset 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
}

.oneItem.CreateNewRoom:hover {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(51, 65, 85, 0.5)) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
  transform: translateY(-10px) !important;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.05),
    inset 0 -4px 20px rgba(0, 0, 0, 0.4) !important;
}

.oneItem.CreateNewRoom svg {
  color: rgba(129, 140, 248, 0.5) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  filter: none !important;
}

.oneItem.CreateNewRoom:hover svg {
  color: rgba(129, 140, 248, 0.8) !important;
  transform: rotate(90deg) scale(1.2) !important;
}

/* Light Mode Add Card */
.light-style .oneItem.CreateNewRoom,
html:not(.dark-style) .oneItem.CreateNewRoom {
  background: linear-gradient(135deg, rgba(224, 229, 236, 0.5), rgba(203, 213, 225, 0.3)) !important;
  border: 2px dashed rgba(71, 85, 105, 0.2) !important;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    inset 0 -4px 20px rgba(0, 0, 0, 0.05) !important;
}

.light-style .oneItem.CreateNewRoom:hover,
html:not(.dark-style) .oneItem.CreateNewRoom:hover {
  background: linear-gradient(135deg, rgba(224, 229, 236, 0.7), rgba(203, 213, 225, 0.5)) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.7),
    inset 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
}

.light-style .oneItem.CreateNewRoom svg,
html:not(.dark-style) .oneItem.CreateNewRoom svg {
  color: rgba(99, 102, 241, 0.5) !important;
}

.light-style .oneItem.CreateNewRoom:hover svg,
html:not(.dark-style) .oneItem.CreateNewRoom:hover svg {
  color: rgba(99, 102, 241, 0.8) !important;
}

.covers {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

.covers svg {
  width: 60px !important;
  height: 60px !important;
  color: rgba(129, 140, 248, 0.5) !important;
  z-index: 2 !important;
  transition: all 0.3s ease !important;
}

.oneItem.CreateNewRoom:hover .covers svg {
  color: rgba(129, 140, 248, 0.8) !important;
  transform: scale(1.2) rotate(90deg) !important;
}

.light-style .covers svg,
html:not(.dark-style) .covers svg {
  color: rgba(99, 102, 241, 0.5) !important;
}

.light-style .oneItem.CreateNewRoom:hover .covers svg,
html:not(.dark-style) .oneItem.CreateNewRoom:hover .covers svg {
  color: rgba(99, 102, 241, 0.8) !important;
}

.blurs {
  display: none !important;
}

/* Floor Cards Responsive */
/* تابلت - 3 كاردات في السطر */
@media (max-width: 1024px) {
  .card.itemCards:has(.types) {
    grid-template-columns: repeat(3, 1fr) !important;
    column-gap: 1.25rem !important;
    row-gap: 1rem !important;
    padding: 1.5rem !important;
  }
  
  .oneItem {
    width: 100% !important;
    min-width: 0 !important;
    height: 200px !important;
  }
  
  .oneItem .image-icon {
    width: 75px !important;
    height: 75px !important;
    margin: 0 0 1.25rem 0 !important;
  }
  
  .oneItem .text-center h6 {
    font-size: 0.65rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .oneItem .text-center h5 {
    font-size: 3.5rem !important;
  }
  
  .covers svg {
    width: 50px !important;
    height: 50px !important;
  }
}

/* موبايل - 2 كاردات في السطر */
@media (max-width: 768px) {
  .card.itemCards:has(.types) {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 1rem !important;
    column-gap: 1rem !important;
    row-gap: 0.75rem !important;
  }
  
  .oneItem {
    width: 100% !important;
    min-width: 0 !important;
    height: 180px !important;
  }
  
  .oneItem .image-icon {
    width: 65px !important;
    height: 65px !important;
    margin: 0 0 1rem 0 !important;
  }
  
  .oneItem .text-center h6 {
    font-size: 0.6rem !important;
    margin-bottom: 0.45rem !important;
    letter-spacing: 2px !important;
  }
  
  .oneItem .text-center h5 {
    font-size: 3rem !important;
    letter-spacing: 3px !important;
  }
  
  .covers svg {
    width: 45px !important;
    height: 45px !important;
  }
}

/* موبايل صغير - 1 كارد في السطر */
@media (max-width: 480px) {
  .card.itemCards:has(.types) {
    grid-template-columns: repeat(1, 1fr) !important;
    padding: 0.75rem !important;
    column-gap: 0.75rem !important;
    row-gap: 0.75rem !important;
  }
  
  .oneItem {
    width: 100% !important;
    min-width: 0 !important;
    height: 170px !important;
  }
  
  .oneItem .image-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 0 0.85rem 0 !important;
  }
  
  .oneItem .text-center h6 {
    font-size: 0.55rem !important;
    margin-bottom: 0.4rem !important;
    letter-spacing: 1.5px !important;
  }
  
  .oneItem .text-center h5 {
    font-size: 2.75rem !important;
    letter-spacing: 2.5px !important;
  }
  
  .covers svg {
    width: 40px !important;
    height: 40px !important;
  }
}

/* ============================================
   HOTEL DATA TABLE COMPONENT
   ============================================ */

/* Table Container */
.hotel-data-table-container {
  background-color: var(--hotel-bg-primary);
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.75rem;
  box-shadow: var(--hotel-card-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Table Controls */
.hotel-table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hotel-table-controls-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hotel-table-controls-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Show Entries */
.hotel-show-entries {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cairo', sans-serif;
}

.hotel-show-entries label {
  color: var(--hotel-text-secondary);
  font-size: 0.875rem;
  margin: 0;
  font-weight: 500;
}

.hotel-select-entries {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.5rem;
  background-color: var(--hotel-bg-primary);
  color: var(--hotel-text-primary);
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
}

.hotel-select-entries:focus {
  outline: none;
  border-color: var(--hotel-primary);
  box-shadow: 0 0 0 3px var(--hotel-primary-lighter);
}

.hotel-show-entries span {
  color: var(--hotel-text-secondary);
  font-size: 0.875rem;
}

/* Search Box */
.hotel-table-search {
  position: relative;
  display: flex;
  align-items: center;
}

.hotel-search-input {
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.5rem;
  background-color: var(--hotel-bg-primary);
  color: var(--hotel-text-primary);
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
  width: 250px;
}

.hotel-search-input:focus {
  outline: none;
  border-color: var(--hotel-primary);
  box-shadow: 0 0 0 3px var(--hotel-primary-lighter);
}

.hotel-table-search i {
  position: absolute;
  right: 0.75rem;
  color: var(--hotel-text-muted);
  pointer-events: none;
}

/* Export Dropdown */
.hotel-export-dropdown {
  position: relative;
}

/* Hide desktop export on desktop by default, show mobile export */
.hotel-table-controls-left .hotel-export-desktop {
  display: none;
}

.hotel-table-controls-right .hotel-export-mobile {
  display: block;
}

.hotel-export-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.5rem;
  background-color: var(--hotel-bg-primary);
  color: var(--hotel-text-primary);
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotel-export-btn:hover {
  background-color: var(--hotel-bg-secondary);
  border-color: var(--hotel-primary);
}

.hotel-export-dropdown .dropdown-menu {
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.5rem;
  background-color: var(--hotel-bg-primary);
  box-shadow: var(--hotel-card-shadow-hover);
  padding: 0.5rem;
  min-width: 180px;
}

.hotel-export-dropdown .dropdown-item {
  padding: 0.625rem 0.75rem;
  color: var(--hotel-text-primary);
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
}

.hotel-export-dropdown .dropdown-item:hover {
  background-color: var(--hotel-bg-secondary);
  color: var(--hotel-primary);
}

/* Table Wrapper */
.hotel-table-wrapper {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hotel-table-loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 10;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hotel-table-loading.active {
  display: flex;
}

.hotel-loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--hotel-border-color);
  border-top-color: var(--hotel-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hotel-table-loading span {
  color: var(--hotel-text-secondary);
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
}

/* Data Table */
.hotel-data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Cairo', sans-serif;
}

.hotel-data-table thead {
  background-color: var(--hotel-bg-secondary);
  border-bottom: 2px solid var(--hotel-border-color);
}

.hotel-data-table thead th {
  padding: 1rem;
  text-align: start;
  color: var(--hotel-text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.hotel-data-table tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--hotel-border-color);
  color: var(--hotel-text-secondary);
  font-size: 0.875rem;
}

.hotel-data-table tbody tr:hover {
  background-color: var(--hotel-bg-secondary);
}

.hotel-data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Pagination */
.hotel-table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hotel-border-color);
  flex-wrap: wrap;
  gap: 1rem;
}

.hotel-pagination-info {
  color: var(--hotel-text-secondary);
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
}

.hotel-pagination-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hotel-pagination-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.375rem;
  background-color: var(--hotel-bg-primary);
  color: var(--hotel-text-primary);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
}

.hotel-pagination-btn:hover:not(:disabled) {
  background-color: var(--hotel-bg-secondary);
  border-color: var(--hotel-primary);
  color: var(--hotel-primary);
}

.hotel-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hotel-pagination-pages {
  display: flex;
  gap: 0.25rem;
  margin: 0 0.5rem;
}

.hotel-pagination-page {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.375rem;
  background-color: var(--hotel-bg-primary);
  color: var(--hotel-text-primary);
  font-size: 0.875rem;
  cursor: pointer;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-pagination-page:hover {
  background-color: var(--hotel-bg-secondary);
  border-color: var(--hotel-primary);
}

.hotel-pagination-page.active {
  background-color: var(--hotel-primary);
  border-color: var(--hotel-primary);
  color: #ffffff;
}

/* Delete All Section (Old - Above table) */
.hotel-delete-all-section {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--hotel-danger-lighter);
  border: 1px solid var(--hotel-danger);
  border-radius: 0.5rem;
}

.hotel-delete-all-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Delete All Inline (New - Next to search) */
.hotel-delete-all-inline {
  display: flex;
  align-items: center;
}

.hotel-delete-all-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: var(--hotel-danger);
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.hotel-delete-all-btn i,
.hotel-delete-all-btn svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.hotel-delete-all-btn:hover:not(.disabled):not(:disabled) {
  background-color: var(--hotel-danger-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
  color: #ffffff !important;
}

.hotel-delete-all-btn:hover:not(.disabled):not(:disabled) i,
.hotel-delete-all-btn:hover:not(.disabled):not(:disabled) svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.hotel-delete-all-btn.disabled,
.hotel-delete-all-btn:disabled {
  background-color: var(--hotel-bg-tertiary);
  color: var(--hotel-text-muted);
  cursor: not-allowed;
  opacity: 0.5;
}

.hotel-delete-all-btn.disabled i,
.hotel-delete-all-btn:disabled i,
.hotel-delete-all-btn.disabled svg,
.hotel-delete-all-btn:disabled svg {
  color: var(--hotel-text-muted) !important;
  fill: var(--hotel-text-muted) !important;
}

/* Empty State */
.hotel-table-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--hotel-text-muted);
}

.hotel-table-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.hotel-table-empty p {
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  margin: 0;
}

/* Dark Mode Specific Styles */
.dark-style .hotel-data-table-container,
html.dark-style .hotel-data-table-container {
  background-color: #1e293b;
  border-color: #334155;
}

.dark-style .hotel-table-loading,
html.dark-style .hotel-table-loading {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Light Mode Specific Styles */
html:not(.dark-style) .hotel-data-table-container,
.light-style .hotel-data-table-container {
  background-color: #ffffff;
  border-color: #e2e8f0;
}

/* Responsive Design - Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hotel-data-table-container {
    padding: 1rem;
  }

  .hotel-table-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  /* First row: Show entries and Export in same line */
  .hotel-table-controls-left {
    width: 100%;
    order: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .hotel-show-entries {
    width: auto;
    flex: 1;
    justify-content: flex-start;
    margin: 0;
  }

  .hotel-show-entries label {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .hotel-select-entries {
    width: auto;
    min-width: 60px;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
  }

  .hotel-show-entries span {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  /* Hide export from controls-right on mobile, show in controls-left */
  .hotel-table-controls-right .hotel-export-mobile {
    display: none !important;
  }

  .hotel-table-controls-left .hotel-export-desktop {
    display: block;
    flex-shrink: 0;
  }

  /* Second row: Search takes full width */
  .hotel-table-controls-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    order: 2;
  }

  .hotel-export-dropdown {
    flex-shrink: 0;
  }

  .hotel-table-controls-left .hotel-export-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  

  .hotel-table-search {
    width: 100%;
    order: 1;
  }
  
  /* Delete button inline positioning */
  .hotel-delete-all-inline {
    order: 0;
    margin-bottom: 0.5rem;
  }

  .hotel-search-input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .hotel-table-wrapper {
    overflow-x: scroll;
  }

  .hotel-data-table {
    min-width: 600px;
  }

  .hotel-table-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .hotel-pagination-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Responsive Design - Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .hotel-data-table-container {
    padding: 1.25rem;
  }

  .hotel-table-controls {
    gap: 0.75rem;
  }

  .hotel-data-table thead th,
  .hotel-data-table tbody td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }

  .hotel-pagination-info {
    font-size: 0.8125rem;
  }
}

/* Responsive Design - Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  .hotel-search-input {
    width: 200px;
  }

  .hotel-data-table thead th,
  .hotel-data-table tbody td {
    padding: 0.875rem;
  }
}

/* ============================================
   HOTEL ROOMS PAGE
   ============================================ */

.hotel-rooms-page {
  padding: 1.5rem;
}

.hotel-page-header {
  background-color: var(--hotel-bg-primary);
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.75rem;
  box-shadow: var(--hotel-card-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.hotel-page-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hotel-page-header .header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hotel-page-header .header-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-primary-light));
  border-radius: 0.5rem;
  color: #ffffff;
}

.hotel-page-header .header-icon svg {
  width: 24px;
  height: 24px;
}

.hotel-page-header .header-title h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hotel-text-primary);
  margin: 0 0 0.25rem 0;
  font-family: 'Cairo', sans-serif;
}

.hotel-page-header .header-title p {
  font-size: 0.875rem;
  color: var(--hotel-text-secondary);
  margin: 0;
  font-family: 'Cairo', sans-serif;
}

.hotel-page-header .header-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hotel-table-section {
  margin-top: 1.5rem;
}

/* Responsive - Rooms Page Header */
@media (max-width: 768px) {
  .hotel-page-header .header-content {
    flex-direction: column;
    align-items: stretch;
  }

  .hotel-page-header .header-actions {
    width: 100%;
  }

  .hotel-page-header .header-actions a {
    flex: 1;
    text-align: center;
  }
}

/* Responsive - Rooms Page Header - Mobile */
@media (max-width: 480px) {
  .hotel-page-header {
    padding: 1rem;
  }

  .hotel-page-header .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hotel-page-header .header-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hotel-page-header .header-icon {
    margin-bottom: 0.5rem;
  }

  .hotel-page-header .header-title {
    text-align: center;
  }

  .hotel-page-header .header-title h1 {
    font-size: 1.25rem;
  }

  .hotel-page-header .header-title p {
    font-size: 0.8125rem;
  }

  .hotel-page-header .header-actions {
    width: 100%;
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
  }

  .hotel-page-header .header-actions a {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }
}

/**
 * Hotel Forms - Create/Edit Pages Styles
 * Supports Dark/Light mode and Responsive Design
 */

/* Form Container */
.hotel-form-container {
  background-color: var(--hotel-bg-primary);
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.75rem;
  box-shadow: var(--hotel-card-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* BS Stepper Styles */
.hotel-form-container .bs-stepper {
  background: transparent;
}

.hotel-form-container .bs-stepper-header {
  border-bottom: 2px solid var(--hotel-border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.hotel-form-container .step {
  flex: 1;
  min-width: 150px;
}

.hotel-form-container .step-trigger {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: start;
  color: var(--hotel-text-primary);
}

.hotel-form-container .bs-stepper-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--hotel-bg-secondary);
  border: 2px solid var(--hotel-border-color);
  color: var(--hotel-text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.hotel-form-container .step.active .bs-stepper-circle,
.hotel-form-container .step.completed .bs-stepper-circle {
  background-color: var(--hotel-primary);
  border-color: var(--hotel-primary);
  color: #ffffff;
}

.hotel-form-container .bs-stepper-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hotel-form-container .bs-stepper-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--hotel-text-primary);
  font-family: 'Cairo', sans-serif;
}

.hotel-form-container .bs-stepper-subtitle {
  font-size: 0.75rem;
  color: var(--hotel-text-secondary);
  font-family: 'Cairo', sans-serif;
}

.hotel-form-container .line {
  flex: 1;
  min-width: 30px;
  height: 2px;
  background-color: var(--hotel-border-color);
  margin: 0 0.5rem;
  position: relative;
  top: -20px;
}

.hotel-form-container .line i {
  display: none;
}

/* Stepper Content */
.hotel-form-container .bs-stepper-content {
  padding: 0;
}

.hotel-form-container .content {
  display: none;
}

.hotel-form-container .content.active {
  display: block;
}

.hotel-form-container .content-header {
  margin-bottom: 1.5rem;
}

.hotel-form-container .content-header h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hotel-text-primary);
  margin: 0;
  font-family: 'Cairo', sans-serif;
}

/* Form Elements */
.hotel-form-container .form-label {
  color: var(--hotel-text-primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
}

.hotel-form-container .form-control {
  background-color: var(--hotel-bg-primary);
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.5rem;
  color: var(--hotel-text-primary);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
  transition: all 0.2s ease;
}

.hotel-form-container .form-control:focus {
  outline: none;
  border-color: var(--hotel-primary);
  box-shadow: 0 0 0 3px var(--hotel-primary-lighter);
}

.hotel-form-container .form-control::placeholder {
  color: var(--hotel-text-muted);
}

.hotel-form-container .form-select {
  background-color: var(--hotel-bg-primary);
  border: 1px solid var(--hotel-border-color);
  border-radius: 0.5rem;
  color: var(--hotel-text-primary);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
  transition: all 0.2s ease;
}

.hotel-form-container .form-select:focus {
  outline: none;
  border-color: var(--hotel-primary);
  box-shadow: 0 0 0 3px var(--hotel-primary-lighter);
}

/* Card Body */
.hotel-form-container .card-body {
  background: transparent;
  padding: 0;
  border: none;
}

/* Form Buttons */
.hotel-form-container .btn-primary {
  background-color: var(--hotel-primary);
  border-color: var(--hotel-primary);
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-family: 'Cairo', sans-serif;
  transition: all 0.2s ease;
}

.hotel-form-container .btn-primary:hover {
  background-color: var(--hotel-primary-dark);
  border-color: var(--hotel-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Table in Form */
.hotel-form-container .component_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hotel-form-container .component_table thead {
  background-color: var(--hotel-bg-secondary);
  border-bottom: 2px solid var(--hotel-border-color);
}

.hotel-form-container .component_table thead th {
  padding: 0.75rem;
  text-align: center;
  color: var(--hotel-text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Cairo', sans-serif;
}

.hotel-form-container .component_table tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--hotel-border-color);
  color: var(--hotel-text-secondary);
  font-size: 0.875rem;
}

.hotel-form-container .component_table tbody td input {
  width: 100%;
  text-align: center;
}

/* Dark Mode */
.dark-style .hotel-form-container,
html.dark-style .hotel-form-container {
  background-color: #111929;
  border-color: #334155;
}

/* Packages Pages Dark Background */
.hotel-rooms-page .hotel-form-container {
  background-color: #111929;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #334155;
}

.dark-style .hotel-rooms-page .hotel-form-container,
html.dark-style .hotel-rooms-page .hotel-form-container {
  background-color: #111929;
  border-color: #334155;
}

.light-style .hotel-rooms-page .hotel-form-container,
html:not(.dark-style) .hotel-rooms-page .hotel-form-container {
  background-color: #ffffff;
  border-color: #e2e8f0;
}

/* Light Mode */
html:not(.dark-style) .hotel-form-container,
.light-style .hotel-form-container {
  background-color: #ffffff;
  border-color: #e2e8f0;
}

/* Responsive - Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hotel-form-container {
    padding: 1rem;
  }

  .hotel-form-container .bs-stepper-header {
    flex-direction: column;
    gap: 1rem;
  }

  .hotel-form-container .step {
    width: 100%;
    min-width: auto;
  }

  .hotel-form-container .line {
    display: none;
  }

  .hotel-form-container .step-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hotel-form-container .bs-stepper-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .hotel-form-container .bs-stepper-label {
    flex: 1;
  }
}

/* Responsive - Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .hotel-form-container {
    padding: 1.25rem;
  }

  .hotel-form-container .bs-stepper-header {
    gap: 0.75rem;
  }

  .hotel-form-container .step {
    min-width: 120px;
  }
}

/* Responsive - Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  .hotel-form-container .component_table {
    font-size: 0.8125rem;
  }
}

/* Select2 Styles for Forms */
.hotel-form-container .select2-container--default .select2-selection--single {
  background-color: var(--hotel-bg-primary) !important;
  border: 1px solid var(--hotel-border-color) !important;
  border-radius: 0.5rem !important;
  height: auto !important;
  min-height: 38px !important;
  padding: 0 !important;
}

.hotel-form-container .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--hotel-text-primary) !important;
  line-height: 38px !important;
  padding: 0 0.875rem !important;
  font-size: 0.875rem !important;
  font-family: 'Cairo', sans-serif !important;
}

.hotel-form-container .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--hotel-text-muted) !important;
}

.hotel-form-container .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px !important;
  right: 8px !important;
  top: 1px !important;
}

.hotel-form-container .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--hotel-text-secondary) transparent transparent transparent !important;
}

.hotel-form-container .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--hotel-text-secondary) transparent !important;
}

.hotel-form-container .select2-container--default .select2-selection--single:focus {
  outline: none !important;
  border-color: var(--hotel-primary) !important;
  box-shadow: 0 0 0 3px var(--hotel-primary-lighter) !important;
}

/* Select2 Dropdown */
.hotel-form-container .select2-dropdown {
  background-color: var(--hotel-bg-primary) !important;
  border: 1px solid var(--hotel-border-color) !important;
  border-radius: 0.5rem !important;
  box-shadow: var(--hotel-card-shadow-hover) !important;
}

.hotel-form-container .select2-container--default .select2-results__option {
  color: var(--hotel-text-primary) !important;
  padding: 0.625rem 0.875rem !important;
  font-size: 0.875rem !important;
  font-family: 'Cairo', sans-serif !important;
}

.hotel-form-container .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--hotel-primary) !important;
  color: #ffffff !important;
}

.hotel-form-container .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: var(--hotel-primary-lighter) !important;
  color: var(--hotel-primary) !important;
}

/* Dark Mode Select2 */
.dark-style .hotel-form-container .select2-container--default .select2-selection--single,
html.dark-style .hotel-form-container .select2-container--default .select2-selection--single {
  background-color: #1e293b !important;
  border-color: #334155 !important;
}

.dark-style .hotel-form-container .select2-dropdown,
html.dark-style .hotel-form-container .select2-dropdown {
  background-color: #1e293b !important;
  border-color: #334155 !important;
}

/* Light Mode Select2 */
html:not(.dark-style) .hotel-form-container .select2-container--default .select2-selection--single,
.light-style .hotel-form-container .select2-container--default .select2-selection--single {
  background-color: #ffffff !important;
  border-color: #e2e8f0 !important;
}

html:not(.dark-style) .hotel-form-container .select2-dropdown,
.light-style .hotel-form-container .select2-dropdown {
  background-color: #ffffff !important;
  border-color: #e2e8f0 !important;
}

/* ============================================
   MODAL RESERVATION TABS AND FORM STYLES
   ============================================ */

/* Modal Title Container */
.modal-title-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Reservation Modal Tabs */
.hotel-reservation-tabs {
  border-bottom: 2px solid var(--hotel-border-color);
  margin-bottom: 1.5rem;
}

.hotel-reservation-tabs .nav-link {
  color: var(--hotel-text-secondary);
  font-weight: 500;
  padding: 0.875rem 1.25rem;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
}

.hotel-reservation-tabs .nav-link:hover {
  color: var(--hotel-primary);
  background-color: transparent;
  border-bottom-color: var(--hotel-primary);
}

.hotel-reservation-tabs .nav-link.active {
  color: var(--hotel-primary);
  background-color: transparent;
  border-bottom-color: var(--hotel-primary);
  font-weight: 600;
}

.hotel-reservation-tabs .nav-link i {
  margin-left: 0.5rem;
  font-size: 1rem;
}

/* Tab Content */
.hotel-form-container .tab-content {
  padding: 1.5rem 0;
}

.hotel-form-container .tab-pane {
  animation: fadeIn 0.3s ease;
}

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

/* Modal Form Container in Modal */
.modal-body .hotel-form-container {
  background: transparent;
  padding: 0;
}

/* Form Controls in Modal */
.modal-body .hotel-form-container .form-control,
.modal-body .hotel-form-container .form-select {
  background-color: var(--hotel-bg-primary);
  border: 1px solid var(--hotel-border-color);
  color: var(--hotel-text-primary);
}

.modal-body .hotel-form-container .form-control:focus,
.modal-body .hotel-form-container .form-select:focus {
  border-color: var(--hotel-primary);
  box-shadow: 0 0 0 3px var(--hotel-primary-lighter);
}

/* Buttons Control in Modal */
.buttons-controle {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hotel-border-color);
}

.buttons-controle .btn {
  margin: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Dark Mode Modal Tabs */
.dark-style .hotel-reservation-tabs,
html.dark-style .hotel-reservation-tabs {
  border-bottom-color: #334155;
}

.dark-style .hotel-reservation-tabs .nav-link,
html.dark-style .hotel-reservation-tabs .nav-link {
  color: #94a3b8;
}

.dark-style .hotel-reservation-tabs .nav-link:hover,
html.dark-style .hotel-reservation-tabs .nav-link:hover {
  color: #60a5fa;
  border-bottom-color: #60a5fa;
}

.dark-style .hotel-reservation-tabs .nav-link.active,
html.dark-style .hotel-reservation-tabs .nav-link.active {
  color: #60a5fa;
  border-bottom-color: #60a5fa;
}

.dark-style .buttons-controle,
html.dark-style .buttons-controle {
  border-top-color: #334155;
}

/* Light Mode Modal Tabs */
.light-style .hotel-reservation-tabs,
html:not(.dark-style) .hotel-reservation-tabs {
  border-bottom-color: #e2e8f0;
}

.light-style .hotel-reservation-tabs .nav-link,
html:not(.dark-style) .hotel-reservation-tabs .nav-link {
  color: #64748b;
}

.light-style .hotel-reservation-tabs .nav-link:hover,
html:not(.dark-style) .hotel-reservation-tabs .nav-link:hover {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.light-style .hotel-reservation-tabs .nav-link.active,
html:not(.dark-style) .hotel-reservation-tabs .nav-link.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.light-style .buttons-controle,
html:not(.dark-style) .buttons-controle {
  border-top-color: #e2e8f0;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .hotel-reservation-tabs .nav-link {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }
  
  .hotel-reservation-tabs .nav-link i {
    font-size: 0.875rem;
    margin-left: 0.375rem;
  }
  
  .buttons-controle .btn {
    width: 100%;
    margin: 0.25rem 0;
  }
  
  .modal-title-container {
    gap: 0.125rem;
  }
  
  .modal-subtitle {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hotel-reservation-tabs {
    flex-wrap: wrap;
  }
  
  .hotel-reservation-tabs .nav-item {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
  
  .hotel-reservation-tabs .nav-link {
    text-align: center;
    border-bottom: none;
    border-left: 3px solid transparent;
    border-radius: 0.375rem;
  }
  
  .hotel-reservation-tabs .nav-link.active {
    border-left-color: var(--hotel-primary);
    border-bottom-color: transparent;
  }
  
  .modal-title {
    font-size: 1rem !important;
  }
  
  .modal-subtitle {
    font-size: 0.6875rem;
  }
}

/* ============================================
   RESERVATION MODAL SPECIFIC STYLES
   ============================================ */

/* Modal Dark Background - #111929 (Dark Mode Only) */
.dark-style #add_reservation.modal .modal-content,
html.dark-style #add_reservation.modal .modal-content {
  background: #111929 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 1rem !important;
  color: #f1f5f9 !important;
}

/* Light Mode Modal - White Background */
.light-style #add_reservation.modal .modal-content,
html:not(.dark-style) #add_reservation.modal .modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}

/* All Tab Panes Dark Background (Dark Mode Only) */
.dark-style #add_reservation .tab-pane,
html.dark-style #add_reservation .tab-pane {
  background: #111929 !important;
  color: #f1f5f9 !important;
}

/* Light Mode Tab Panes */
.light-style #add_reservation .tab-pane,
html:not(.dark-style) #add_reservation .tab-pane {
  background: transparent !important;
  color: #1e293b !important;
}

.dark-style #add_reservation .tab-content,
html.dark-style #add_reservation .tab-content {
  background: #111929 !important;
}

/* Light Mode Tab Content */
.light-style #add_reservation .tab-content,
html:not(.dark-style) #add_reservation .tab-content {
  background: transparent !important;
}

/* All Elements Inside Tab Panes - Dark (Dark Mode Only) */
.dark-style #add_reservation .tab-pane .title h5,
.dark-style #add_reservation .tab-pane .title,
html.dark-style #add_reservation .tab-pane .title h5,
html.dark-style #add_reservation .tab-pane .title {
  color: #f1f5f9 !important;
}

/* Light Mode Titles */
.light-style #add_reservation .tab-pane .title h5,
.light-style #add_reservation .tab-pane .title,
html:not(.dark-style) #add_reservation .tab-pane .title h5,
html:not(.dark-style) #add_reservation .tab-pane .title {
  color: #1e293b !important;
}

#add_reservation .tab-pane .form-label,
#add_reservation .tab-pane label {
  color: #f1f5f9 !important;
}

/* Light Mode Labels */
.light-style #add_reservation .tab-pane .form-label,
.light-style #add_reservation .tab-pane label,
html:not(.dark-style) #add_reservation .tab-pane .form-label,
html:not(.dark-style) #add_reservation .tab-pane label {
  color: #1e293b !important;
}

#add_reservation .tab-pane .switch-label {
  color: #f1f5f9 !important;
}

/* Light Mode Switch Labels */
.light-style #add_reservation .tab-pane .switch-label,
html:not(.dark-style) #add_reservation .tab-pane .switch-label {
  color: #1e293b !important;
}

/* Table Dark Styling (Dark Mode Only) */
.dark-style #add_reservation .tab-pane table.data-table,
html.dark-style #add_reservation .tab-pane table.data-table {
  background: #111929 !important;
  color: #f1f5f9 !important;
}

/* Light Mode Tables */
.light-style #add_reservation .tab-pane table.data-table,
html:not(.dark-style) #add_reservation .tab-pane table.data-table {
  background: #ffffff !important;
  color: #1e293b !important;
}

#add_reservation .tab-pane table.data-table td,
#add_reservation .tab-pane table.data-table th {
  color: #f1f5f9 !important;
  border-color: #374151 !important;
}

/* Light Mode Table Cells */
.light-style #add_reservation .tab-pane table.data-table td,
.light-style #add_reservation .tab-pane table.data-table th,
html:not(.dark-style) #add_reservation .tab-pane table.data-table td,
html:not(.dark-style) #add_reservation .tab-pane table.data-table th {
  color: #1e293b !important;
  border-color: #e2e8f0 !important;
}

#add_reservation .tab-pane table.data-table tbody tr {
  border-color: #374151 !important;
}

/* Light Mode Table Rows */
.light-style #add_reservation .tab-pane table.data-table tbody tr,
html:not(.dark-style) #add_reservation .tab-pane table.data-table tbody tr {
  border-color: #e2e8f0 !important;
}

#add_reservation .tab-pane table.data-table tbody tr:hover {
  background-color: #1a1d2e !important;
}

/* Light Mode Table Row Hover */
.light-style #add_reservation .tab-pane table.data-table tbody tr:hover,
html:not(.dark-style) #add_reservation .tab-pane table.data-table tbody tr:hover {
  background-color: #f8fafc !important;
}

/* Input Group Text Dark (Dark Mode Only) */
.dark-style #add_reservation .tab-pane .input-group-text,
html.dark-style #add_reservation .tab-pane .input-group-text {
  background-color: #1a1d2e !important;
  border-color: #374151 !important;
  color: #f1f5f9 !important;
}

/* Light Mode Input Group Text */
.light-style #add_reservation .tab-pane .input-group-text,
html:not(.dark-style) #add_reservation .tab-pane .input-group-text {
  background-color: #f8fafc !important;
  border-color: #e2e8f0 !important;
  color: #1e293b !important;
}

/* HR Dark (Dark Mode Only) */
.dark-style #add_reservation .tab-pane hr,
html.dark-style #add_reservation .tab-pane hr {
  border-color: #374151 !important;
  opacity: 1 !important;
}

/* Light Mode HR */
.light-style #add_reservation .tab-pane hr,
html:not(.dark-style) #add_reservation .tab-pane hr {
  border-color: #e2e8f0 !important;
}

/* Modal Dialog - Wider */
.hotel-reservation-modal.modal-dialog {
  max-width: 95% !important;
  width: 95% !important;
}

@media (min-width: 1200px) {
  .hotel-reservation-modal.modal-dialog {
    max-width: 1400px !important;
    width: 1400px !important;
  }
}

/* Modal Body - Wider Content */
#add_reservation .modal-body {
  padding: 2rem !important;
}

/* Form Container in Modal - Wider */
#add_reservation .hotel-form-container {
  padding: 0 1rem;
}

/* Select2 in Modal - Dark Mode (Dark Mode Only) */
.dark-style #add_reservation .select2-container--default .select2-selection--single,
html.dark-style #add_reservation .select2-container--default .select2-selection--single {
  background-color: #1a1d2e !important;
  border: 1px solid #374151 !important;
  border-radius: 8px !important;
  height: 40px !important;
  padding: 0.625rem 0.875rem !important;
  font-size: 0.9rem !important;
  color: #f1f5f9 !important;
  transition: all 0.2s ease !important;
}

/* Select2 in Modal - Light Mode */
.light-style #add_reservation .select2-container--default .select2-selection--single,
html:not(.dark-style) #add_reservation .select2-container--default .select2-selection--single {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}

#add_reservation .select2-container--default .select2-selection--single:focus-within {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
  outline: none !important;
}

.dark-style #add_reservation .select2-container--default .select2-selection--single .select2-selection__rendered,
html.dark-style #add_reservation .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5rem !important;
  padding: 0 !important;
  color: #f1f5f9 !important;
}

/* Light Mode Select2 Rendered */
.light-style #add_reservation .select2-container--default .select2-selection--single .select2-selection__rendered,
html:not(.dark-style) #add_reservation .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #1e293b !important;
}

#add_reservation .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #94a3b8 !important;
}

/* Light Mode Select2 Placeholder */
.light-style #add_reservation .select2-container--default .select2-selection--single .select2-selection__placeholder,
html:not(.dark-style) #add_reservation .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #94a3b8 !important;
}

#add_reservation .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 0.5rem !important;
  top: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Select2 Dropdown - Dark Mode (Dark Mode Only) */
.dark-style #add_reservation .select2-dropdown,
html.dark-style #add_reservation .select2-dropdown {
  background-color: #1a1d2e !important;
  border: 1px solid #374151 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

/* Select2 Dropdown - Light Mode */
.light-style #add_reservation .select2-dropdown,
html:not(.dark-style) #add_reservation .select2-dropdown {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}

.dark-style #add_reservation .select2-container--default .select2-results__option,
html.dark-style #add_reservation .select2-container--default .select2-results__option {
  color: #f1f5f9 !important;
  padding: 0.5rem 1rem !important;
}

/* Light Mode Select2 Options */
.light-style #add_reservation .select2-container--default .select2-results__option,
html:not(.dark-style) #add_reservation .select2-container--default .select2-results__option {
  color: #1e293b !important;
}

.dark-style #add_reservation .select2-container--default .select2-results__option--highlighted[aria-selected],
html.dark-style #add_reservation .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #252a41 !important;
  color: #60a5fa !important;
}

/* Light Mode Select2 Highlighted */
.light-style #add_reservation .select2-container--default .select2-results__option--highlighted[aria-selected],
html:not(.dark-style) #add_reservation .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: rgba(37, 99, 235, 0.1) !important;
  color: #2563eb !important;
}

.dark-style #add_reservation .select2-container--default .select2-results__option[aria-selected=true],
html.dark-style #add_reservation .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #3b82f6 !important;
  color: #ffffff !important;
}

/* Flatpickr in Modal - Dark Mode (Dark Mode Only) */
.dark-style #add_reservation .flatpickr-date,
html.dark-style #add_reservation .flatpickr-date {
  background-color: #1a1d2e !important;
  border: 1px solid #374151 !important;
  color: #f1f5f9 !important;
  border-radius: 8px !important;
  padding: 0.625rem 0.875rem !important;
  font-size: 0.9rem !important;
  text-align: center !important;
}

/* Flatpickr in Modal - Light Mode */
.light-style #add_reservation .flatpickr-date,
html:not(.dark-style) #add_reservation .flatpickr-date {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}

#add_reservation .flatpickr-date:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
  outline: none !important;
}

#add_reservation .flatpickr-date::placeholder {
  color: #94a3b8 !important;
}

/* Flatpickr Calendar Dropdown */
/* Flatpickr Calendar - Dark Mode (Dark Mode Only) */
.dark-style #add_reservation .flatpickr-calendar,
html.dark-style #add_reservation .flatpickr-calendar {
  background: #1a1d2e !important;
  border: 1px solid #374151 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

/* Flatpickr Calendar - Light Mode */
.light-style #add_reservation .flatpickr-calendar,
html:not(.dark-style) #add_reservation .flatpickr-calendar {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}

#add_reservation .flatpickr-calendar .flatpickr-months {
  background: #1a1d2e !important;
  color: #f1f5f9 !important;
}

/* Light Mode Flatpickr Months */
.light-style #add_reservation .flatpickr-calendar .flatpickr-months,
html:not(.dark-style) #add_reservation .flatpickr-calendar .flatpickr-months {
  background: #ffffff !important;
  color: #1e293b !important;
}

#add_reservation .flatpickr-calendar .flatpickr-weekdays {
  background: #1a1d2e !important;
}

/* Light Mode Flatpickr Weekdays */
.light-style #add_reservation .flatpickr-calendar .flatpickr-weekdays,
html:not(.dark-style) #add_reservation .flatpickr-calendar .flatpickr-weekdays {
  background: #ffffff !important;
}

#add_reservation .flatpickr-calendar .flatpickr-weekday {
  color: #f1f5f9 !important;
}

/* Light Mode Flatpickr Weekday */
.light-style #add_reservation .flatpickr-calendar .flatpickr-weekday,
html:not(.dark-style) #add_reservation .flatpickr-calendar .flatpickr-weekday {
  color: #1e293b !important;
}

#add_reservation .flatpickr-calendar .flatpickr-day {
  color: #f1f5f9 !important;
}

/* Light Mode Flatpickr Day */
.light-style #add_reservation .flatpickr-calendar .flatpickr-day,
html:not(.dark-style) #add_reservation .flatpickr-calendar .flatpickr-day {
  color: #1e293b !important;
}

#add_reservation .flatpickr-calendar .flatpickr-day:hover {
  background: #252a41 !important;
  color: #60a5fa !important;
}

/* Light Mode Flatpickr Day Hover */
.light-style #add_reservation .flatpickr-calendar .flatpickr-day:hover,
html:not(.dark-style) #add_reservation .flatpickr-calendar .flatpickr-day:hover {
  background: rgba(37, 99, 235, 0.1) !important;
  color: #2563eb !important;
}

#add_reservation .flatpickr-calendar .flatpickr-day.selected {
  background: #3b82f6 !important;
  color: #ffffff !important;
}

/* Form Controls in Modal - Larger - Dark Mode (Dark Mode Only) */
.dark-style #add_reservation .hotel-form-container .form-control,
.dark-style #add_reservation .hotel-form-container .form-select,
html.dark-style #add_reservation .hotel-form-container .form-control,
html.dark-style #add_reservation .hotel-form-container .form-select {
  font-size: 0.9375rem !important;
  padding: 0.75rem 1rem !important;
  min-height: 45px !important;
  background-color: #1a1d2e !important;
  border: 1px solid #374151 !important;
  color: #f1f5f9 !important;
}

/* Form Controls in Modal - Light Mode */
.light-style #add_reservation .hotel-form-container .form-control,
.light-style #add_reservation .hotel-form-container .form-select,
html:not(.dark-style) #add_reservation .hotel-form-container .form-control,
html:not(.dark-style) #add_reservation .hotel-form-container .form-select {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}

/* Labels in Modal - Dark Mode (Dark Mode Only) */
.dark-style #add_reservation .hotel-form-container .form-label,
html.dark-style #add_reservation .hotel-form-container .form-label {
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.625rem !important;
  color: #f1f5f9 !important;
}

/* Labels in Modal - Light Mode */
.light-style #add_reservation .hotel-form-container .form-label,
html:not(.dark-style) #add_reservation .hotel-form-container .form-label {
  color: #1e293b !important;
}

/* Tables in Modal - Dark Mode (Dark Mode Only) */
.dark-style #add_reservation .hotel-form-container .component_table,
html.dark-style #add_reservation .hotel-form-container .component_table {
  font-size: 0.9375rem !important;
  width: 100%;
  border-collapse: collapse;
  background-color: #111929 !important;
  color: #f1f5f9 !important;
}

/* Tables in Modal - Light Mode */
.light-style #add_reservation .hotel-form-container .component_table,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table {
  background-color: #ffffff !important;
  color: #1e293b !important;
}

.dark-style #add_reservation .hotel-form-container .component_table thead,
html.dark-style #add_reservation .hotel-form-container .component_table thead {
  background-color: #1a1d2e !important;
  border-bottom: 2px solid #374151 !important;
}

/* Light Mode Table Header */
.light-style #add_reservation .hotel-form-container .component_table thead,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table thead {
  background-color: #f8fafc !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

.dark-style #add_reservation .hotel-form-container .component_table thead th,
html.dark-style #add_reservation .hotel-form-container .component_table thead th {
  padding: 1rem !important;
  text-align: center !important;
  color: #f1f5f9 !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  border-bottom: 2px solid #374151 !important;
}

/* Light Mode Table Header Cells */
.light-style #add_reservation .hotel-form-container .component_table thead th,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table thead th {
  color: #1e293b !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

.dark-style #add_reservation .hotel-form-container .component_table tbody,
html.dark-style #add_reservation .hotel-form-container .component_table tbody {
  background-color: #111929 !important;
}

/* Light Mode Table Body */
.light-style #add_reservation .hotel-form-container .component_table tbody,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table tbody {
  background-color: #ffffff !important;
}

#add_reservation .hotel-form-container .component_table tbody tr {
  border-bottom: 1px solid #374151 !important;
  transition: background-color 0.2s ease !important;
}

/* Light Mode Table Rows */
.light-style #add_reservation .hotel-form-container .component_table tbody tr,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table tbody tr {
  border-bottom: 1px solid #e2e8f0 !important;
}

#add_reservation .hotel-form-container .component_table tbody tr:hover {
  background-color: #1a1d2e !important;
}

/* Light Mode Table Row Hover */
.light-style #add_reservation .hotel-form-container .component_table tbody tr:hover,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table tbody tr:hover {
  background-color: #f8fafc !important;
}

#add_reservation .hotel-form-container .component_table tbody td {
  padding: 1rem !important;
  color: #f1f5f9 !important;
  text-align: center !important;
}

/* Light Mode Table Cells */
.light-style #add_reservation .hotel-form-container .component_table tbody td,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table tbody td {
  color: #1e293b !important;
}

/* All Elements Inside Tab Panes - Dark */
/* Titles - Dark Mode (Default) */
.dark-style #add_reservation .tab-pane .title h5,
.dark-style #add_reservation .tab-pane .title,
html.dark-style #add_reservation .tab-pane .title h5,
html.dark-style #add_reservation .tab-pane .title,
#add_reservation .tab-pane .title h5,
#add_reservation .tab-pane .title {
  color: #f1f5f9 !important;
}

/* Titles - Light Mode */
.light-style #add_reservation .tab-pane .title h5,
.light-style #add_reservation .tab-pane .title,
html:not(.dark-style) #add_reservation .tab-pane .title h5,
html:not(.dark-style) #add_reservation .tab-pane .title {
  color: #1e293b !important;
}

/* Labels - Dark Mode (Default) */
.dark-style #add_reservation .tab-pane .form-label,
.dark-style #add_reservation .tab-pane label,
html.dark-style #add_reservation .tab-pane .form-label,
html.dark-style #add_reservation .tab-pane label,
#add_reservation .tab-pane .form-label,
#add_reservation .tab-pane label {
  color: #f1f5f9 !important;
}

/* Labels - Light Mode */
.light-style #add_reservation .tab-pane .form-label,
.light-style #add_reservation .tab-pane label,
html:not(.dark-style) #add_reservation .tab-pane .form-label,
html:not(.dark-style) #add_reservation .tab-pane label {
  color: #1e293b !important;
}

/* Switch Labels - Dark Mode (Default) */
.dark-style #add_reservation .tab-pane .switch-label,
html.dark-style #add_reservation .tab-pane .switch-label,
#add_reservation .tab-pane .switch-label {
  color: #f1f5f9 !important;
}

/* Switch Labels - Light Mode */
.light-style #add_reservation .tab-pane .switch-label,
html:not(.dark-style) #add_reservation .tab-pane .switch-label {
  color: #1e293b !important;
}

/* Table Dark Styling (Default) */
.dark-style #add_reservation .tab-pane table.data-table,
html.dark-style #add_reservation .tab-pane table.data-table,
#add_reservation .tab-pane table.data-table {
  background: #111929 !important;
  color: #f1f5f9 !important;
}

/* Table Light Styling */
.light-style #add_reservation .tab-pane table.data-table,
html:not(.dark-style) #add_reservation .tab-pane table.data-table {
  background: #ffffff !important;
  color: #1e293b !important;
}

/* Table Cells - Dark Mode (Default) */
.dark-style #add_reservation .tab-pane table.data-table td,
.dark-style #add_reservation .tab-pane table.data-table th,
html.dark-style #add_reservation .tab-pane table.data-table td,
html.dark-style #add_reservation .tab-pane table.data-table th,
#add_reservation .tab-pane table.data-table td,
#add_reservation .tab-pane table.data-table th {
  color: #f1f5f9 !important;
  border-color: #374151 !important;
}

/* Table Cells - Light Mode */
.light-style #add_reservation .tab-pane table.data-table td,
.light-style #add_reservation .tab-pane table.data-table th,
html:not(.dark-style) #add_reservation .tab-pane table.data-table td,
html:not(.dark-style) #add_reservation .tab-pane table.data-table th {
  color: #1e293b !important;
  border-color: #e2e8f0 !important;
}

/* Table Rows - Dark Mode (Default) */
.dark-style #add_reservation .tab-pane table.data-table tbody tr,
html.dark-style #add_reservation .tab-pane table.data-table tbody tr,
#add_reservation .tab-pane table.data-table tbody tr {
  border-color: #374151 !important;
}

/* Table Rows - Light Mode */
.light-style #add_reservation .tab-pane table.data-table tbody tr,
html:not(.dark-style) #add_reservation .tab-pane table.data-table tbody tr {
  border-color: #e2e8f0 !important;
}

/* Table Row Hover - Dark Mode (Default) */
.dark-style #add_reservation .tab-pane table.data-table tbody tr:hover,
html.dark-style #add_reservation .tab-pane table.data-table tbody tr:hover,
#add_reservation .tab-pane table.data-table tbody tr:hover {
  background-color: #1a1d2e !important;
}

/* Table Row Hover - Light Mode */
.light-style #add_reservation .tab-pane table.data-table tbody tr:hover,
html:not(.dark-style) #add_reservation .tab-pane table.data-table tbody tr:hover {
  background-color: #f8fafc !important;
}

/* Input Group Text Dark */
#add_reservation .tab-pane .input-group-text {
  background-color: #1a1d2e !important;
  border-color: #374151 !important;
  color: #f1f5f9 !important;
}

/* HR Dark */
#add_reservation .tab-pane hr {
  border-color: #374151 !important;
  opacity: 1 !important;
}

/* Modal Responsive */
@media (max-width: 992px) {
  .hotel-reservation-modal.modal-dialog {
    max-width: 98% !important;
    width: 98% !important;
  }
  
  #add_reservation .modal-body {
    padding: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .hotel-reservation-modal.modal-dialog {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  #add_reservation .modal-body {
    padding: 1rem !important;
  }
  
  #add_reservation .hotel-form-container {
    padding: 0 0.5rem;
  }
}

/* ============================================
   LIGHT MODE STYLES FOR RESERVATION MODAL
   ============================================ */

/* Light Mode - Override all dark styles */
.light-style #add_reservation.modal .modal-content,
html:not(.dark-style) #add_reservation.modal .modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}

.light-style #add_reservation .tab-pane,
html:not(.dark-style) #add_reservation .tab-pane {
  background: transparent !important;
  color: #1e293b !important;
}

.light-style #add_reservation .tab-content,
html:not(.dark-style) #add_reservation .tab-content {
  background: transparent !important;
}

/* Light Mode - Form Controls */
.light-style #add_reservation .hotel-form-container .form-control,
.light-style #add_reservation .hotel-form-container .form-select,
html:not(.dark-style) #add_reservation .hotel-form-container .form-control,
html:not(.dark-style) #add_reservation .hotel-form-container .form-select {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}

.light-style #add_reservation .hotel-form-container .form-control:focus,
.light-style #add_reservation .hotel-form-container .form-select:focus,
html:not(.dark-style) #add_reservation .hotel-form-container .form-control:focus,
html:not(.dark-style) #add_reservation .hotel-form-container .form-select:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

/* Light Mode - Component Tables */
.light-style #add_reservation .hotel-form-container .component_table,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table {
  background-color: #ffffff !important;
  color: #1e293b !important;
}

.light-style #add_reservation .hotel-form-container .component_table thead,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table thead {
  background-color: #f8fafc !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

.light-style #add_reservation .hotel-form-container .component_table thead th,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table thead th {
  color: #1e293b !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

.light-style #add_reservation .hotel-form-container .component_table tbody,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table tbody {
  background-color: #ffffff !important;
}

.light-style #add_reservation .hotel-form-container .component_table tbody tr,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table tbody tr {
  border-bottom: 1px solid #e2e8f0 !important;
}

.light-style #add_reservation .hotel-form-container .component_table tbody tr:hover,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table tbody tr:hover {
  background-color: #f8fafc !important;
}

.light-style #add_reservation .hotel-form-container .component_table tbody td,
html:not(.dark-style) #add_reservation .hotel-form-container .component_table tbody td {
  color: #1e293b !important;
}

/* Light Mode - All Text Colors */
.light-style #add_reservation .tab-pane,
html:not(.dark-style) #add_reservation .tab-pane {
  color: #1e293b !important;
}

.light-style #add_reservation .tab-pane h5,
.light-style #add_reservation .tab-pane .title,
.light-style #add_reservation .tab-pane .title h5,
html:not(.dark-style) #add_reservation .tab-pane h5,
html:not(.dark-style) #add_reservation .tab-pane .title,
html:not(.dark-style) #add_reservation .tab-pane .title h5 {
  color: #1e293b !important;
}

.light-style #add_reservation .tab-pane .form-label,
.light-style #add_reservation .tab-pane label,
.light-style #add_reservation .tab-pane .switch-label,
html:not(.dark-style) #add_reservation .tab-pane .form-label,
html:not(.dark-style) #add_reservation .tab-pane label,
html:not(.dark-style) #add_reservation .tab-pane .switch-label {
  color: #1e293b !important;
}

/* Package View Page - Card Based Layout */
.hotel-package-view-container {
  background-color: #111929;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #334155;
}

.dark-style .hotel-package-view-container,
html.dark-style .hotel-package-view-container {
  background-color: #111929;
  border-color: #334155;
}

.light-style .hotel-package-view-container,
html:not(.dark-style) .hotel-package-view-container {
  background-color: #ffffff;
  border-color: #e2e8f0;
}

.hotel-view-card {
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid #334155;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.dark-style .hotel-view-card,
html.dark-style .hotel-view-card {
  background-color: rgba(30, 41, 59, 0.5);
  border-color: #334155;
}

.light-style .hotel-view-card,
html:not(.dark-style) .hotel-view-card {
  background-color: #f8fafc;
  border-color: #e2e8f0;
}

.hotel-view-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #334155;
  background-color: rgba(15, 23, 42, 0.5);
}

.dark-style .hotel-view-card-header,
html.dark-style .hotel-view-card-header {
  background-color: rgba(15, 23, 42, 0.5);
  border-bottom-color: #334155;
}

.light-style .hotel-view-card-header,
html:not(.dark-style) .hotel-view-card-header {
  background-color: #ffffff;
  border-bottom-color: #e2e8f0;
}

.hotel-view-card-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hotel-text-primary);
  display: flex;
  align-items: center;
}

.hotel-view-card-body {
  padding: 1.5rem;
}

.hotel-view-field {
  margin-bottom: 1.25rem;
}

.hotel-view-field:last-child {
  margin-bottom: 0;
}

.hotel-view-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hotel-text-secondary);
  margin-bottom: 0.5rem;
}

.hotel-view-field .hotel-view-value {
  font-size: 1rem;
  color: var(--hotel-text-primary);
  font-weight: 500;
  padding: 0.5rem 0;
}

.hotel-view-field-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #334155;
}

.dark-style .hotel-view-field-total,
html.dark-style .hotel-view-field-total {
  border-top-color: #334155;
}

.light-style .hotel-view-field-total,
html:not(.dark-style) .hotel-view-field-total {
  border-top-color: #e2e8f0;
}

.hotel-view-field-total label {
  font-size: 1rem;
  font-weight: 600;
}

.hotel-view-price {
  color: var(--hotel-primary) !important;
  font-weight: 600 !important;
}

.hotel-view-price-total {
  font-size: 1.5rem !important;
  color: var(--hotel-success) !important;
  font-weight: 700 !important;
}

.hotel-view-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--hotel-text-muted);
}

.hotel-view-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.hotel-view-empty p {
  margin: 0;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hotel-package-view-container {
    padding: 1rem;
  }

  .hotel-view-card-header,
  .hotel-view-card-body {
    padding: 1rem;
  }
}

