.icon {
    max-width: 120px;
  }

  /* ===== BUTTON STYLES ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  /* Primary Button - Uses accent color */
  .btn-primary {
    background: var(--accent-color);
    color: white;
  }

  .btn-primary:hover {
    background: #4c24b8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(95, 46, 234, 0.3);
  }

  /* Secondary Button - Outline style */
  .btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
  }

  .btn-secondary:hover {
    background: var(--accent-color);
    color: white;
  }

  /* Success / Green Button */
  .btn-success {
    background: #28a745;
    color: white;
  }

  .btn-success:hover {
    background: #218838;
  }

  /* Danger / Red Button */
  .btn-danger {
    background: #dc3545;
    color: white;
  }

  .btn-danger:hover {
    background: #c82333;
  }

  /* Warning / Yellow Button */
  .btn-warning {
    background: #ffc107;
    color: #171717;
  }

  .btn-warning:hover {
    background: #e0a800;
  }

  /* Disabled State */
  .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  /* ===== THEMED TEXT & LINKS ===== */
  .text-primary {
    color: var(--text-primary);
  }

  .text-secondary {
    color: var(--text-secondary);
  }

  .text-accent {
    color: var(--accent-color);
  }

  /* Link reset with accent color */
  .link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
  }

  .link:hover {
    text-decoration: underline;
    opacity: 0.8;
  }
  /* ===== THEME VARIABLES ===== */
  :root {
    --card-bg: #f8f9ff;
    --text-primary: #171717;
    --text-secondary: #555;
    --text-heading: #222;
    --text-strong: #000;
    --border-color: #ddd;
    --badge-bg: #f1f3f5;
    --badge-text: #495057;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --hover-bg: #f1f5ff;
    --accent-bg: #2563eb;
    --accent-hover: #1d4ed8;
    --warning-bg: #fbbf24;
    --danger-bg: #ef4444;
    --modal-overlay: rgba(0, 0, 0, 0.5);
  }

  .darkmode {
    --card-bg: #222235;
    --text-primary: #e4e6f0;
    --text-secondary: #aaa;
    --text-heading: #ddd;
    --text-strong: #fff;
    --border-color: #444;
    --badge-bg: #333;
    --badge-text: #ccc;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --hover-bg: #33334a;
    --accent-bg: #5f2eea;
    --accent-hover: #4c24b8;
    --warning-bg: #d97706;
    --danger-bg: #b91c1c;
    --modal-overlay: rgba(0, 0, 0, 0.7);
  }

  /* ===== GLOBAL THEME STYLES ===== */
  body {
    color: var(--text-primary);
    background: var(--card-bg);
    transition: background 0.3s ease, color 0.3s ease;
  }

  main {
    color: var(--text-primary);
  }

  h5 {
    color: var(--text-heading);
  }

  /* ===== TAB BAR ===== */
  .tab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 15px;
  }

  .tab-btn {
    padding: 10px 18px;
    cursor: pointer;
    background: var(--badge-bg);
    border: none;
    border-radius: 6px 6px 0 0;
    font-weight: 500;
    color: var(--badge-text);
    transition: all 0.3s ease;
  }

  .tab-btn.active {
    background: var(--accent-bg);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  }

  /* ===== TABLE ===== */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: var(--card-bg);
    color: var(--text-primary);
    box-shadow: var(--card-shadow);
    border-radius: 10px;
    overflow: hidden;
  }

  table th,
  table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
  }

  table th {
    background: var(--accent-bg);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
  }

  table tbody tr {
    transition: background 0.2s ease;
  }

  table tbody tr:hover {
    background: var(--hover-bg);
  }

  table td {
    color: var(--text-primary);
  }

  /* ===== BUTTONS IN TABLE ===== */
  .btn-edit {
    background: var(--warning-bg);
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-edit:hover {
    background: #b45309;
  }

  .btn-delete {
    background: var(--danger-bg);
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-delete:hover {
    background: #991b1b;
  }

  /* ===== MODAL OVERRIDES ===== */
  .fixed.inset-0.z-50 {
    background: var(--modal-overlay);
  }

  .backdrop-blur-xl {
    backdrop-filter: blur(12px);
  }

  .bg-white\/10 {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
  }

  .text-white {
    color: var(--text-primary);
  }

  /* Input fields inside modal */
  .bg-white\/80 {
    background: var(--badge-bg);
    color: var(--text-primary);
  }

  .border-gray-300 {
    border-color: var(--border-color) !important;
  }

  .focus\:ring-blue-400:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
  }

  /* Add Button */
  .bg-blue-600 {
    background: var(--accent-bg);
  }

  .bg-blue-600:hover,
  .hover\:bg-blue-700:hover {
    background: var(--accent-hover);
  }
  .hotel_btn , .page_btn{
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  right: 0;
  top: 13px;
  z-index: 1;
}
.hotel_btn .icon, .page_btn .icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.hotel_btn.rotated .icon, .page_btn.rotated .icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
  .sidebar.hidden .hotel_btn, .sidebar.hidden .page_btn  {
    display: none;
  }