/* Custom Variables */
:root {
  --primary-color: #0056b3;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --sidebar-width: 250px;
  --sidebar-collapsed-width: 60px;
  --header-height: 60px;
  --theme-color: #ff8c00 !important;
}

/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--light-color);
}

/* Utility Classes */
.mb-lg {
  margin-bottom: 2rem;
}
.mt-lg {
  margin-top: 2rem;
}
.p-lg {
  padding: 2rem;
}
.mb-md {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.g-4 {
  gap: 1.5rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 240px;
  z-index: 1020;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 0.75rem 0;
}

/* Adjust header when sidebar is collapsed */
body.sidebar-collapsed .header {
  left: 60px;
}

/* Custom styles for the header */
.header .dropdown-menu {
  min-width: 200px;
}

.header .input-group {
  width: 300px;
}

/* Match sidebar colors */
.header .btn-outline {
  color: #0056b3;
  border-color: #dee2e6;
}

.header .btn-outline:hover,
.header .btn-outline:focus {
  color: #0056b3;
  background-color: #cfcfcf;
  border-color: #0056b3;
}
.btn-theme {
  color: #fff;
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}

.btn-theme:hover,
.btn-theme:focus {
  color: #fff;
  border-color: var(--theme-color);
  background-color: #0056b3;
}

.header .dropdown-item:hover,
.header .dropdown-item:focus {
  color: #0056b3;
  background-color: #f8f9fa;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  z-index: 1030;
  transition: all 0.3s ease;
  background-color: var(--dark-color);
  color: white;
}

.sidebar.collapsed {
  width: 60px;
}

.sidebar .sidebar-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.sidebar .nav-link {
  padding: 0.65rem;
}
/*   color: rgba(255, 255, 255, 0.8);
  border-left: 3px solid transparent;


.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--primary-color);
} */

.sidebar .nav-link i {
  width: 20px;
  text-align: center;
  margin-right: 0.5rem;
}

.sidebar.collapsed .nav-link span,
.sidebar.collapsed .sidebar-header span {
  display: none;
}

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 1rem 1.25rem;
}

.card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.dashboard-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.dashboard-card-value {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dashboard-card-label {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.dashboard-card-trend {
  font-size: 0.875rem;
}

.dashboard-card-trend.positive {
  color: var(--success-color);
}

.dashboard-card-trend.negative {
  color: var(--danger-color);
}

/* Chart Containers */
.chart-container {
  position: relative;
  min-height: 300px;
  margin-bottom: 2rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.chart-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

/* Table Styles */
.table {
  margin-bottom: 0;
}

.table th {
  font-weight: 500;
  color: var(--secondary-color);
  border-top: none;
}

.table td {
  vertical-align: middle;
}

/* Status Badges */
.status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-active {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
}

.status-pending {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning-color);
}

.status-inactive {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
}

/* Main Content */
.main-content {
  margin-left: 250px;
  padding: 95px 0 60px;
  transition: all 0.3s ease;
}
.btn-icon {
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e9e9e9;
}

body.sidebar-collapsed .main-content {
  margin-left: 60px;
}

/* Avatar Styles */
.contact-avatar,
.preview-avatar,
.room-thumbnail,
.room-card-image,
.upsell-service-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.preview-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.room-thumbnail {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.room-card-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.upsell-service-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
}

/* Progress Bar Styles */
.progress-bar {
  height: 8px;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-bar.bg-primary {
  background-color: var(--primary-color);
}

.progress-bar.bg-info {
  background-color: var(--info-color);
}

.progress-bar.bg-success {
  background-color: var(--success-color);
}

/* Panel Styles */
.filter-panel,
.audience-panel,
.content-editor-panel,
.guest-profile-preview,
.guest-profile-section {
  display: none;
}

.guest-profile-section[data-section="overview"] {
  display: block;
}

/* WhatsApp Chat Styles */
.chat-container {
  display: flex;
  height: calc(100vh - 180px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.chat-sidebar {
  width: 300px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.chat-search {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.chat-search input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
}

.chat-contacts {
  flex: 1;
  overflow-y: auto;
}

.chat-contact {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.chat-contact:hover {
  background-color: #f9f9f9;
}

.chat-contact.active {
  background-color: #f0f7ff;
  border-left: 3px solid #0055cc;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  background-size: cover;
  background-position: center;
}

.contact-info {
  flex: 1;
}

.contact-name {
  font-weight: 600;
  margin-bottom: 3px;
  display: flex;
  justify-content: space-between;
}

.contact-time {
  font-size: 12px;
  color: #888;
}

.contact-preview {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.contact-meta {
  display: flex;
  align-items: center;
}

.contact-badge {
  background-color: #0055cc;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

.chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.chat-header-info {
  display: flex;
  align-items: center;
}

.chat-header-actions {
  display: flex;
  gap: 10px;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background-color: #f5f5f5;
}

.message {
  margin-bottom: 15px;
  max-width: 70%;
}

.message-incoming {
  align-self: flex-start;
}

.message-outgoing {
  align-self: flex-end;
  margin-left: auto;
}

.message-content {
  padding: 10px 15px;
  border-radius: 8px;
  position: relative;
}

.message-incoming .message-content {
  background-color: #fff;
  border: 1px solid #eee;
}

.message-outgoing .message-content {
  background-color: #dcf8c6;
}

.message-text {
  font-size: 14px;
  line-height: 1.4;
}

.message-time {
  font-size: 11px;
  color: #888;
  text-align: right;
  margin-top: 5px;
}

.message-status {
  display: inline-block;
  margin-left: 5px;
}

.message-status i {
  font-size: 12px;
  color: #0055cc;
}

.chat-input {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-input-actions {
  display: flex;
  gap: 10px;
}

.chat-input-field {
  flex: 1;
  position: relative;
}

.chat-input-field input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
}

.chat-input-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0055cc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.chat-input-send:hover {
  background-color: #004099;
}

.chat-date-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.chat-date-divider span {
  background-color: #f5f5f5;
  padding: 0 10px;
}

/* Upsell Styles */
.upsell-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.upsell-metric-card {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upsell-metric-value {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
}

.upsell-metric-trend {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.trend-up {
  color: #0d8a4b;
}

.trend-down {
  color: #d92c20;
}

.upsell-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.upsell-service-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.upsell-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.upsell-service-image {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.upsell-service-info {
  padding: 15px;
}

.upsell-service-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #333;
}

.upsell-service-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.upsell-service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.upsell-service-price {
  font-weight: 600;
  color: #0055cc;
}

.upsell-service-stats {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #666;
}

.upsell-service-stat {
  display: flex;
  align-items: center;
}

.upsell-service-stat i {
  margin-right: 5px;
}

.upsell-service-actions {
  padding: 10px 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.upsell-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-group {
  display: flex;
  gap: 10px;
}

.upsell-categories {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.upsell-category {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  background-color: #f0f0f0;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.upsell-category.active {
  background-color: #0055cc;
  color: #fff;
}

.upsell-category:hover:not(.active) {
  background-color: #e0e0e0;
}

.upsell-performance {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.upsell-performance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.upsell-performance-title {
  font-weight: 600;
  font-size: 18px;
}

.upsell-performance-filters {
  display: flex;
  gap: 10px;
}

.upsell-performance-chart {
  height: 300px;
  margin-bottom: 20px;
}

.upsell-performance-metrics {
  display: flex;
  gap: 20px;
}

.upsell-performance-metric {
  flex: 1;
  text-align: center;
}

.upsell-performance-metric-value {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.upsell-performance-metric-label {
  font-size: 14px;
  color: #666;
}

.upsell-service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.upsell-service-modal.active {
  display: flex;
}

.upsell-service-modal-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.upsell-service-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header {
    left: 60px;
  }

  body.sidebar-expanded .header {
    left: 250px;
  }

  .header .input-group {
    width: 200px;
  }

  .header .btn span:not(.badge) {
    display: none;
  }

  .sidebar {
    width: 60px;
  }

  .sidebar.expanded {
    width: 250px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .chart-container {
    min-height: 250px;
  }

  .table-responsive {
    margin-bottom: 1rem;
  }

  .main-content {
    margin-left: 60px;
  }

  .chat-container {
    flex-direction: column;
  }

  .chat-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #dee2e6;
  }
}

/* Print Styles */
@media print {
  .sidebar,
  .navbar {
    display: none !important;
  }

  .main-content {
    margin-left: 0 !important;
    padding: 0 !important;
  }

  .card {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* Contact List Styles */
.contact-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-metric-card {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-metric-value {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
}

.contact-metric-trend {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.contact-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-table th {
  background-color: #f8f9fa;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #eee;
}

.contact-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.contact-table tr:last-child td {
  border-bottom: none;
}

.contact-table tr:hover {
  background-color: #f8f9fa;
}

.contact-name-cell {
  display: flex;
  align-items: center;
}

.contact-name {
  font-weight: 500;
}

.contact-email {
  font-size: 12px;
  color: #666;
}

.contact-actions {
  display: flex;
  gap: 5px;
}

.contact-actions button {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  background-color: transparent;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-actions button:hover {
  background-color: #f0f0f0;
}

.contact-actions .btn-view {
  color: #0055cc;
  border-color: #0055cc;
}

.contact-actions .btn-edit {
  color: #ff9800;
  border-color: #ff9800;
}

.contact-actions .btn-delete {
  color: #d92c20;
  border-color: #d92c20;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.contact-tag {
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  background-color: #f0f7ff;
  color: #0055cc;
}

.bulk-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-import-export {
  display: flex;
  gap: 10px;
}

/* Segment metrics styling */
.segment-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.segment-metric-card {
  flex: 1;
  min-width: 200px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.2s ease;
}

.segment-metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.metric-title {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 10px;
}

.segment-metric-value {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
}

.segment-metric-trend {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.trend-up {
  color: #0d8a4b;
}

.trend-down {
  color: #d92c20;
}

/* Filter bar styling */
.segment-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-bottom: 20px;
}

.filter-group {
  display: flex;
  gap: 10px;
}

/* Segment card styling */
.segment-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.segment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.segment-card-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.segment-card-body {
  padding: 15px;
}

.segment-card-footer {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.segment-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-active {
  background-color: #e6f7ee;
  color: #0d8a4b;
}

.status-draft {
  background-color: #f0f0f0;
  color: #666;
}

.status-archived {
  background-color: #f9e9e8;
  color: #d92c20;
}

/* Tags styling */
.segment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.segment-tag {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  background-color: #f0f7ff;
  color: #0055cc;
}

/* Criteria styling */
.segment-criteria {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.criteria-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.criteria-field {
  font-weight: 600;
  min-width: 120px;
}

.criteria-operator {
  color: #666;
  min-width: 100px;
}

/* Stats styling */
.segment-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.segment-stat {
  flex: 1;
  min-width: 120px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.segment-stat-value {
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0;
}

.segment-stat-label {
  font-size: 14px;
  color: #666;
}

/* Preview styling */
.segment-preview {
  flex: 1;
  min-width: 300px;
}

.segment-preview-header {
  font-weight: 600;
  margin-bottom: 10px;
}

.segment-preview-list {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 8px;
}

.segment-preview-item {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.segment-preview-item:last-child {
  border-bottom: none;
}

.preview-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background-size: cover;
  background-position: center;
}

.preview-name {
  font-weight: 500;
}

.preview-email {
  font-size: 12px;
  color: #666;
  margin-left: 10px;
}

/* Action buttons */
.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.btn-page {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #dee2e6;
  cursor: pointer;
}

.btn-page.active {
  background-color: #0055cc;
  color: white;
  border-color: #0055cc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .segment-metrics {
    flex-direction: column;
  }

  .segment-card-footer {
    flex-direction: column;
  }

  .segment-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    margin-bottom: 10px;
  }

  .criteria-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Room Upgrades Styles */
.upgrade-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.upgrade-metric-card {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upgrade-metric-value {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
}

.upgrade-metric-trend {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.room-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.room-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.room-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-type-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.room-card-content {
  padding: 15px;
}

.room-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.room-card-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.room-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #0055cc;
  margin-bottom: 10px;
}

.room-card-stats {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.upgrade-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upgrade-path {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.upgrade-path-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.upgrade-path-title {
  font-size: 18px;
  font-weight: 600;
}

.upgrade-path-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.upgrade-path-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-metrics,
  .segment-metrics,
  .upgrade-metrics {
    flex-direction: column;
  }

  .contact-metric-card,
  .segment-metric-card,
  .upgrade-metric-card {
    margin-bottom: 10px;
  }

  .contact-filter-bar,
  .segment-filter-bar,
  .upgrade-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .criteria-row {
    flex-direction: column;
    align-items: stretch;
  }

  .segment-stats {
    flex-direction: column;
  }

  .room-upgrade-grid {
    grid-template-columns: 1fr;
  }
}
/* Landing Page Specific Styles */
.landing-hero {
  background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.landing-logo {
  max-width: 250px;
  margin-bottom: 30px;
}

.landing-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.landing-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.landing-cta {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.landing-cta:hover {
  background-color: #e67e00;
  transform: translateY(-2px);
}

.landing-features {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: var(--gray-800);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gray-800);
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

.landing-screenshots {
  background-color: var(--gray-100);
  padding: 80px 20px;
}

.landing-screenshots h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: var(--gray-800);
}

.screenshots-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.screenshot-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.screenshot-image {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--gray-200);
}

.screenshot-content {
  padding: 20px;
}

.screenshot-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.screenshot-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 15px;
}

.screenshot-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.screenshot-link:hover {
  text-decoration: underline;
}

.landing-footer {
  background-color: var(--gray-800);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.landing-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .landing-hero h1 {
    font-size: 2rem;
  }

  .landing-hero p {
    font-size: 1rem;
  }

  .screenshots-container {
    grid-template-columns: 1fr;
  }
}
/* Room Upgrades specific styles */
.upgrade-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.upgrade-metric-card {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upgrade-metric-value {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0;
}

.upgrade-metric-trend {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.trend-up {
  color: #0d8a4b;
}

.trend-down {
  color: #d92c20;
}

.room-upgrade-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.room-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.room-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-type-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.room-card-content {
  padding: 15px;
}

.room-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.room-card-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.room-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #0055cc;
  margin-bottom: 10px;
}

.room-card-stats {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.ai-recommendation {
  background-color: #fff;
  border-left: 4px solid #0055cc;
  padding: 15px;
  border-radius: 4px 8px 8px 4px;
}

.ai-recommendation-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0055cc;
}

.ai-recommendation-title i {
  margin-right: 8px;
}

.icon-bg {
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.icon-bg-2 {
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.icon-bg-3 {
  width: 22px;
  height: 22px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.upgrade-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-group {
  display: flex;
  gap: 10px;
}

.upgrade-path {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.upgrade-path-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.upgrade-path-title {
  font-size: 18px;
  font-weight: 600;
}

.upgrade-path-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-active {
  background-color: #e6f7ee;
  color: #0d8a4b;
}

.status-inactive {
  background-color: #f0f0f0;
  color: #666;
}

.upgrade-path-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.room-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .upgrade-metrics {
    flex-direction: column;
  }

  .upgrade-metric-card {
    margin-bottom: 10px;
  }

  .upgrade-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .room-upgrade-grid {
    grid-template-columns: 1fr;
  }
}
/* Templates specific styles */

.template-preview {
  position: relative;
  height: 180px;
  overflow: hidden;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.template-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
  opacity: 1;
}

.template-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.template-categories {
  scrollbar-width: thin;
  scrollbar-color: #dee2e6 #f8f9fa;
}

.template-categories::-webkit-scrollbar {
  height: 6px;
}

.template-categories::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.template-categories::-webkit-scrollbar-thumb {
  background-color: #dee2e6;
  border-radius: 6px;
}

.editor-container {
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.template-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.template-preview {
  height: 180px;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.template-card:hover .template-preview-overlay {
  opacity: 1;
}

.template-preview-actions {
  display: flex;
  gap: 10px;
}

.template-info {
  padding: 15px;
}

.template-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 16px;
  color: #333;
}

.template-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.template-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
}

.template-type {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

.type-email {
  background-color: #e3f2fd;
  color: #0055cc;
}

.type-sms {
  background-color: #e8f5e9;
  color: #0d8a4b;
}

.type-whatsapp {
  background-color: #e6fffa;
  color: #25d366;
}

.type-push {
  background-color: #fff8e1;
  color: #ff9800;
}

.template-actions {
  padding: 10px 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.template-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.badge-new {
  background-color: #e3f2fd;
  color: #0055cc;
}

.badge-popular {
  background-color: #fff8e1;
  color: #ff9800;
}

.template-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-group {
  display: flex;
  gap: 10px;
}

.template-categories {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.template-category {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  background-color: #f0f0f0;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.template-category.active {
  background-color: #0055cc;
  color: #fff;
}

.template-category:hover:not(.active) {
  background-color: #e0e0e0;
}

.template-editor-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.template-editor-modal.active {
  display: flex;
}

.template-editor-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 1200px;
  height: 90%;
  max-height: 800px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.template-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.template-editor-title {
  font-size: 18px;
  font-weight: 600;
}

.template-editor-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.template-editor-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.template-editor-sidebar {
  width: 300px;
  border-right: 1px solid #eee;
  overflow-y: auto;
  padding: 15px;
}

.template-editor-main {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background-color: #f8f9fa;
}

.template-editor-footer {
  display: flex;
  justify-content: flex-end;
  padding: 15px 20px;
  border-top: 1px solid #eee;
  gap: 10px;
}

.editor-section {
  margin-bottom: 20px;
}

.editor-section-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.editor-field {
  margin-bottom: 15px;
}

.editor-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: #666;
}

.editor-field input,
.editor-field select,
.editor-field textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.editor-field textarea {
  min-height: 100px;
  resize: vertical;
}

.template-preview-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-height: 400px;
}

.template-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.template-preview-title {
  font-weight: 600;
  font-size: 16px;
}

.template-preview-device {
  display: flex;
  gap: 10px;
}

.device-option {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #666;
}

.device-option.active {
  background-color: #0055cc;
  color: #fff;
}

.template-preview-frame {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.frame-desktop {
  width: 100%;
  height: 500px;
}

.frame-mobile {
  width: 375px;
  height: 667px;
}

.frame-tablet {
  width: 768px;
  height: 1024px;
}

.template-variables {
  margin-top: 15px;
}

.variable-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f0f7ff;
  color: #0055cc;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
}

.variable-tag:hover {
  background-color: #e3f2fd;
}

.template-blocks {
  margin-top: 20px;
}

.template-block {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
  cursor: move;
  background-color: #fff;
}

.template-block:hover {
  background-color: #f8f9fa;
}

.template-block-title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
}

.template-block-description {
  font-size: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .template-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .template-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    margin-bottom: 10px;
    flex-wrap: wrap;
  }

  .template-editor-body {
    flex-direction: column;
  }

  .template-editor-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
    max-height: 300px;
  }

  .frame-mobile {
    width: 100%;
  }

  .frame-tablet {
    width: 100%;
  }
} /* Guest List Styles */

/* Guest Metrics */
.guest-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.guest-metric-card {
  background: var(--extra-light);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.guest-metric-value {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--spacing-xs);
}

.guest-metric-label {
  color: var(--medium);
  font-size: 14px;
}

/* Guest Filters */
.guest-filters {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* Filter Panel */
.filter-panel {
  display: none; /* Hidden by default */
}

.filter-panel.show {
  display: block;
}

/* Bulk Actions */
.bulk-actions {
  display: none; /* Hidden by default */
}

.bulk-actions.show {
  display: block;
}

/* Guest Profile Preview */
.guest-profile-preview {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
}

.guest-profile-preview.show {
  display: block;
}

.guest-profile-section {
  display: none; /* Hidden by default */
}

.guest-profile-section[data-section="overview"] {
  display: block; /* Overview section visible by default */
}

.guest-profile-section.active {
  display: block;
}

/* Guest Table */
.guest-table {
  background: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.guest-table th {
  background: var(--extra-light);
  color: var(--dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.guest-table td {
  vertical-align: middle;
}

.guest-name {
  font-weight: 500;
  color: var(--dark);
}

.guest-email {
  color: var(--medium);
}

.guest-status {
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
  font-size: 12px;
  font-weight: 500;
}

.status-checked-in {
  background: var(--success-color);
  color: white;
}

.status-checked-out {
  background: var(--medium);
  color: white;
}

.status-reserved {
  background: var(--warning-color);
  color: var(--dark);
}

.status-cancelled {
  background: var(--danger-color);
  color: white;
}

/* Guest Actions */
.guest-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.action-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.action-view {
  background: var(--primary-color);
}

.action-view:hover {
  background: var(--primary-dark);
}

.action-edit {
  background: var(--warning-color);
}

.action-edit:hover {
  background: #e6a100;
}

.action-delete {
  background: var(--danger-color);
}

.action-delete:hover {
  background: #c82333;
}

/* Guest Details Modal */
.guest-details-modal .modal-body {
  padding: var(--spacing-lg);
}

.guest-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.guest-info-item {
  margin-bottom: var(--spacing-md);
}

.guest-info-label {
  color: var(--medium);
  font-size: 14px;
  margin-bottom: var(--spacing-xs);
}

.guest-info-value {
  color: var(--dark);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .guest-metrics {
    grid-template-columns: 1fr;
  }

  .guest-info-grid {
    grid-template-columns: 1fr;
  }

  .guest-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-wrap: wrap;
  }
}
.footer {
  width: -webkit-fill-available;
  position: fixed;
  bottom: 0;
  right: 0;
  margin-left: 240px;
  z-index: 1020;
  border-top: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

body.sidebar-collapsed .footer {
  margin-left: 60px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer {
    left: 60px;
  }

  body.sidebar-expanded .footer {
    left: 250px;
  }
}
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-light-primary {
  background-color: rgba(13, 110, 253, 0.1);
}

.bg-light-success {
  background-color: rgba(25, 135, 84, 0.1);
}

.bg-light-info {
  background-color: rgba(13, 202, 240, 0.1);
}

.bg-light-warning {
  background-color: rgba(255, 193, 7, 0.1);
}

.bg-light-secondary {
  background-color: rgba(108, 117, 125, 0.1);
}

.bg-light-theme {
  background-color: rgba(255, 140, 0, 0.1);
}


.bg-plat {
  background-color:rgba(229, 228, 226, 0.8)
}
.bg-gold {
  background-color:rgba(255, 215, 0, 0.8)
}
.bg-silv {
  background-color:rgba(192, 192, 192, 0.8)
}
.bg-bron {
  background-color:rgba(205, 127, 50, 0.8)
}

.metric-trend.positive {
  color: #28a745;
}

.metric-trend.negative {
  color: #dc3545;
}