.dashboard-container {
  padding: 20px;
  background-color: #f0f2f5;
  height: calc(100vh - 100px); /* Adjust based on header/footer */
  overflow-y: auto;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr 350px;
  gap: 20px;
  min-height: 500px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.dashboard-grid-analytics {
  grid-template-columns: repeat(3, 1fr);
}

/* Summary Cards Column */
.summary-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  flex: 1; /* Stretch to fill column height */
  min-height: 120px;
}

.summary-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.summary-card .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.summary-card .value {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.summary-card .label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Specific Card Colors */
.card-total .icon-box {
  background-color: #f0fdf4;
  color: #16a34a;
}
.card-available .icon-box {
  background-color: #f0f9ff;
  color: #0284c7;
}
.card-ooi .icon-box {
  background-color: #fffaf0;
  color: #d97706;
}
.card-saleable .icon-box {
  background-color: #faf5ff;
  color: #7c3aed;
}

/* Large Cards */
.large-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-title-row h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
}

.card-subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.btn-icon-only {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

/* Occupancy Chart Styles */
.occupancy-chart-container {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 40px;
  position: relative;
  min-height: 250px;
}

.chart-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.bar-value {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.bar-stack {
  width: 100%;
  max-width: 42px;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
}

.bar-segment {
  width: 100%;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.segment-definite {
  background: #e2e8f0;
  background-image: repeating-linear-gradient(
    45deg,
    #cbd5e1,
    #cbd5e1 4px,
    #e2e8f0 4px,
    #e2e8f0 8px
  );
}
.segment-tentative {
  background: #7fad49;
}
.segment-seribooking {
  background: #8b5cf6;
}
.segment-waiting {
  background: #ec4899;
}
.segment-allotment {
  background: #f59e0b;
}
.segment-ooo {
  background: #94a3b8;
}

.bar-date {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-top: 8px;
}

/* Legend */
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

.legend-color {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* Revenue Section */
.revenue-total {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.revenue-progress-box {
  margin: 24px 0;
}

.revenue-progress-bar {
  height: 40px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
}

.revenue-segment {
  height: 100%;
}

.revenue-segment.food {
  background-color: #84cc16;
}
.revenue-segment.room {
  background-color: #e2e8f0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(255, 255, 255, 0.5) 5px,
    rgba(255, 255, 255, 0.5) 10px
  );
}

.revenue-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.rev-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.rev-label {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  flex-grow: 1;
}

.rev-value {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.rev-percent {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 400;
}

.transaction-list {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 4px;
  max-height: 400px; /* Limit height to prevent card from growing too much */
}

.transaction-list::-webkit-scrollbar {
  width: 4px;
}

.transaction-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

.transaction-list::-webkit-scrollbar-thumb:hover {
  background: #cbd5e1;
}

.transaction-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #f1f5f9;
}

.trans-bar {
  width: 6px;
  height: 36px;
  border-radius: 3px;
}

.trans-info {
  flex-grow: 1;
}

.transaction-item {
  border-radius: 12px;
  padding: 12px 16px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.transaction-item:hover {
  transform: translateX(4px);
}

.trans-bar {
  width: 6px;
  height: 32px;
  border-radius: 3px;
  flex-shrink: 0;
}

.trans-info {
  flex-grow: 1;
}

.trans-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}

.trans-value {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}

.trans-percent {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

.trans-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* Custom Mini Table */
.custom-mini-table {
  border-collapse: separate;
  border-spacing: 0 4px;
}

.custom-mini-table thead th {
  border-radius: 6px;
}

.custom-mini-table tbody td {
  padding: 12px 8px;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1400px) {
  .dashboard-grid {
    grid-template-columns: 240px 1fr 300px;
  }
}

@media (max-width: 1200px) {
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard-grid-analytics {
    grid-template-columns: 1fr 1fr;
  }
  .summary-column {
    grid-column: span 2;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .summary-card {
    flex: 1 1 calc(25% - 20px);
    min-width: 180px;
  }
}

@media (max-width: 992px) {
  .dashboard-grid,
  .dashboard-grid-analytics {
    grid-template-columns: 1fr;
  }
  .summary-column {
    grid-column: span 1;
  }
  .summary-card {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .dashboard-container {
    padding: 10px;
  }
  .summary-card {
    flex: 1 1 100%;
    padding: 16px;
  }
  .revenue-total {
    font-size: 28px;
  }
  .large-card {
    padding: 16px;
  }
}

/* Mobile Side Menu */
.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.side-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.side-menu.show {
  left: 0;
}

.side-menu-header {
  height: 64px;
}

.side-menu-body {
  flex-grow: 1;
  overflow-y: auto;
}

.side-menu .list-group-item {
  cursor: pointer;
  transition: all 0.2s;
  color: #475569;
  border: none !important;
  margin-bottom: 4px;
}

.side-menu .list-group-item:hover {
  background-color: #f2f7ec !important; /* var(--bs-main-50) */
  color: #7fad49 !important; /* var(--bs-main) */
}

.side-menu .list-group-item.active {
  background-color: #7fad49 !important; /* var(--bs-main) */
  color: #fff !important;
}

.side-menu .list-group-item.active i {
  color: #fff !important;
}

.side-menu .list-group-item i {
  color: #7fad49;
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .dashboard-container {
    height: auto;
    min-height: 100vh;
    padding-bottom: 80px;
  }
  .dashboard-grid,
  .dashboard-grid-analytics {
    height: auto;
  }
  .large-card {
    height: auto;
    min-height: 400px; /* Increased to accommodate legend and chart */
  }
  .outlet-chart-container {
    min-height: 350px !important;
  }

  /* Hide the old mobile nav toggle button (replaced by bottom nav) */
  #btnMobileNav {
    display: none !important;
  }

  /* Hide the old side menu and overlay on mobile (replaced by bottom nav) */
  .side-menu,
  .side-menu-overlay {
    display: none !important;
  }

  /* Add bottom padding to SPA container to prevent content from being hidden behind bottom nav */
  .spa-container {
    padding-bottom: 70px !important;
  }
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  position: fixed;
  bottom: 24px; /* sits above the 24px footer info strip */
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1500;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.04);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 6px 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item svg {
  transition: all 0.2s ease;
}

.bottom-nav-item span {
  transition: all 0.2s ease;
  line-height: 1;
}

.bottom-nav-item.active {
  color: #6eb739;
}

.bottom-nav-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: #6eb739;
  border-radius: 0 0 3px 3px;
}

.bottom-nav-item.active svg {
  stroke: #6eb739;
}

.bottom-nav-item.active span {
  color: #6eb739;
}

.bottom-nav-item:active {
  transform: scale(0.92);
}

/* Print: hide bottom nav */
@media print {
  .mobile-bottom-nav {
    display: none !important;
  }
}

/* Hotel Status View Styles */
.hotel-status-wrapper {
  animation: hsFadeIn 0.5s ease-out;
}

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

.status-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.status-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.card-table-wrapper table thead th {
  background-color: #fcfcfc;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: #64748b;
}

.card-table-wrapper table tbody td {
  font-size: 0.9rem;
  vertical-align: middle;
  color: #334155;
}

.text-success {
  color: #7fad49 !important;
}

.header-filters input:focus,
.header-filters select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(127, 173, 73, 0.1) !important;
}

.discrepancy-label {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .hotel-status-wrapper {
    padding: 1rem !important;
  }
  .status-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .availability-wrapper {
    padding: 0 !important;
  }

  .availability-table {
    font-size: 8px !important;
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
  }

  .availability-table th,
  .availability-table td {
    padding: 2px 1px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    width: 24px !important;
    font-size: 8px !important;
  }

  .availability-table .sticky-col-1 {
    min-width: 95px !important;
    max-width: 95px !important;
    width: 95px !important;
    border-right-width: 1px;
    padding-left: 2px !important;
    overflow: hidden;
  }

  .availability-table .sticky-col-2 {
    left: 95px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    width: 16px !important;
    border-right-width: 1px;
    padding: 2px 1px !important;
  }

  .room-type-info {
    line-height: 1 !important;
    white-space: normal !important;
  }

  .room-type-name {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 7px !important;
    color: #94a3b8;
    white-space: normal !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px !important;
    margin-top: 1px;
    line-height: 1.1;
  }

  .room-type-code {
    font-size: 9px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .day-label {
    font-size: 7px !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 0 !important;
    display: block;
  }

  .date-label {
    font-size: 7px !important;
    letter-spacing: -0.5px !important;
    display: block;
  }

  .availability-grid-container {
    border-radius: 0;
    border: none;
    max-height: calc(100vh - 90px);
  }

  .availability-header {
    margin-bottom: 4px !important;
    padding: 4px;
  }

  .availability-header .custom-date-wrapper input {
    height: 28px !important;
    font-size: 11px !important;
    width: 120px !important;
  }

  .availability-header .btn {
    padding: 2px 8px !important;
    font-size: 11px !important;
  }
}

/* Room Availability View Styles */
.availability-wrapper {
  animation: hsFadeIn 0.5s ease-out;
}

.availability-grid-container {
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-height: calc(100vh - 180px);
}

.availability-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 0.8rem;
}

.availability-table th,
.availability-table td {
  border-right: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 6px 10px;
  text-align: center;
  white-space: nowrap;
  min-width: 50px;
}

.availability-table thead th {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
  font-weight: 700;
  color: #475569;
  border-bottom: 2px solid #e2e8f0;
}

/* Frozen columns */
.availability-table .sticky-col-1 {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 11;
  text-align: left;
  min-width: 220px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.03);
  border-right: 2px solid #e2e8f0;
}

.availability-table thead th.sticky-col-1 {
  z-index: 12;
  background: #ffffff;
}

.availability-table .sticky-col-2 {
  position: sticky;
  left: 220px;
  background: #fff;
  z-index: 11;
  min-width: 45px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.03);
  border-right: 2px solid #e2e8f0;
}

.availability-table thead th.sticky-col-2 {
  z-index: 12;
  background: #ffffff;
}

/* Weekend highlighting */
.weekend-cell {
  background-color: #fff7ed !important; /* Very light orange for weekends */
}

.negative-val {
  color: #ef4444;
  font-weight: 800;
}

.room-type-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.room-type-code {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.85rem;
}

.room-type-name {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 400;
}

.day-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  display: block;
  /* color: #94a3b8; */
  margin-bottom: 2px;
}

.date-label {
  font-size: 0.8rem;
  display: block;
}

/* Filter Popup Styles */
.filter-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  z-index: 1000;
  border: 1px solid #e2e8f0;
}

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

.filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.filter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-input-wrapper i:first-child {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  font-size: 14px;
}

.filter-input-wrapper input,
.filter-input-wrapper select {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  outline: none;
  transition: all 0.2s;
  appearance: none;
}

.filter-input-wrapper input:focus,
.filter-input-wrapper select:focus {
  border-color: #7fad49;
  box-shadow: 0 0 0 3px rgba(127, 173, 73, 0.1);
}

.select-arrow {
  position: absolute;
  right: 12px;
  pointer-events: none;
  font-size: 10px !important;
  color: #94a3b8;
}

.filter-actions {
  display: flex;
  gap: 12px;
}

.filter-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear {
  background: transparent;
  border: none;
  color: #475569;
}

.btn-clear:hover {
  background: #f1f5f9;
}

.btn-apply {
  background: #7fad49;
  border: none;
  color: #fff;
}

.btn-apply:hover {
  background: #6eb739;
}

/* Custom Dashboard Cruise Selector */
.dashboard-cruise-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50rem;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease-in-out;
  position: relative;
  min-width: 220px;
}

.dashboard-cruise-container:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dashboard-cruise-container:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.dashboard-cruise-container .cruise-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.dashboard-cruise-container label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  margin: 0;
  white-space: nowrap;
}

.dash-cruise-select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  padding-right: 18px;
  cursor: pointer;
  outline: none;
  box-shadow: none !important;
  text-overflow: ellipsis;
  max-width: 170px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Per-Chart Mini Cruise Select Dropdown */
.chart-cruise-select {
  border: 1px solid #cbd5e1 !important;
  background-color: #f8fafc !important;
  color: #334155 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  padding: 4px 24px 4px 10px !important;
  height: 28px !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.2s ease-in-out !important;

  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-size: 10px 10px !important;
  min-width: 85px !important;
  max-width: 140px !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.chart-cruise-select:hover {
  background-color: #ffffff !important;
  border-color: #94a3b8 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08) !important;
}

.chart-cruise-select:focus {
  background-color: #ffffff !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
}


