@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap);
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  height: 100%;
  scroll-behavior: smooth;
  width: 100%;
}

/* App.css */

/* --- General Styles & Resets --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

input {
  font-family: inherit;
  border: none;
}

input:focus {
  outline: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.bg-gray-light {
  background-color: #f9fafb;
}

.bg-blue-light {
  background-color: #eff6ff;
}

.bg-dark {
  background-color: #00296b;
}

.text-white {
  color: #fff;
}

.text-center {
  text-align: center;
}

/* --- Icons --- */
i[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  vertical-align: middle;
  display: inline-block;
}

.input-icon {
  color: #9ca3af;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
}

.button-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.button-icon-sm {
  width: 1rem;
  height: 1rem;
}

/* --- Hero Section --- */

/* --- Content Sections --- */
.content-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .content-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: -3rem;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title-left {
  font-size: 1.5rem;
  font-weight: 600;
  color: inherit;
  margin-bottom: 1.5rem;
  text-align: left;
}

.section-subtitle {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.section-subtitle-left {
  color: inherit;
  margin-bottom: 1.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .section-title,
  .section-title-left {
    font-size: 1.875rem;
  }
}

/* md:text-3xl */

/* Grid Layouts */
.grid {
  display: grid;
}

.gap-sm {
  gap: 1rem;
}

.gap-md {
  gap: 1.5rem;
}

.gap-lg {
  gap: 2rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3 minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Added */
  .md-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Banner Section */
.banner-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-size: cover;
  background-position: center;
  color: white;
}

.banner-overlay {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 0.5rem;
}

.banner-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .banner-title {
    font-size: 2.25rem;
  }
}

.banner-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.button {
  display: inline-block;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: background-color 0.15s ease-in-out;
  border: none;
  cursor: pointer;
}

.button-orange {
  background-color: #f97316;
  color: white;
}

.button-orange:hover {
  background-color: #ea580c;
}

.button-blue {
  background-color: #2563eb;
  color: white;
}

.button-blue:hover {
  background-color: #1d4ed8;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .app-buttons {
    justify-content: flex-start;
  }
}

.app-buttons img {
  height: 3rem;
}

.hero-section {
  position: relative;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  @media screen and (min-width: 1024px) {
    padding: 0 4rem;
  }
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 2 rem;
  line-height: 2 rem;
  color: #fff;
  margin: 0;
  text-align: left;

  /* Subtle emboss effect */
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.5),
    /* slight depth */ -1px -1px 1px rgba(255, 255, 255, 0.1); /* soft top light */
  letter-spacing: 0.3px;
}

/* Tablet and up */
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .hero-section {
    min-height: 400px;
    background-position: right center;
    padding: 3rem;
  }
}

/* Desktop and wide screens */
@media (min-width: 1200px) {
  .hero-section {
    background-position: 90% center;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
.emphasise {
  color: darkorange;
}

.header {
  background-color: #fff;
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  /* position: fixed; */
  top: 0;
  z-index: 40;
  width: 100%;
  height: 64px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0 1rem;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  margin: 0;
  @media screen and (min-width: 768px) {
    margin-left: 1rem;
  }
  @media screen and (min-width: 1024px) {
    margin-left: 8rem;
  }
  @media screen and (min-width: 1440px) {
    margin-left: 12rem;
  }
}

.logo img {
  height: 48px;
  transition: transform 0.2s ease-in-out;
  margin-top: -8px;
}

.logo img:hover {
  transform: scale(1.05);
}

.auth-section {
  display: flex;
  align-items: center;
  /* gap: 1.25rem; */
}

.right-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
  margin: 0;
  @media screen and (min-width: 1440px) {
    padding-right: 9rem;
  }
  @media screen and (min-width: 1024px) and (max-width: 1300px) {
    padding-right: 4rem;
  }
}

.button-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.button-profile:hover {
  color: #2563eb;
}

.button-profile .profile-text {
  display: none;
}

@media (min-width: 768px) {
  .button-profile .profile-text {
    display: inline;
  }
}

.button-logout {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #ef4444;
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.15s ease-in-out;
  border: none;
  cursor: pointer;
}

.button-logout:hover {
  background-color: #dc2626;
}

.button-login,
.button-account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  /* background-color: #00296b; */
  color: #00296b;
  padding: 0.5rem;
  /* border-radius: 0.375rem; */
  border: none;
  cursor: pointer;
  /* transition: background-color 0.15s ease-in-out; */
  box-shadow: none !important;
}

/* .button-login:hover,
.button-account:hover {
  background-color: #001f54;
} */

.button-login .login-text,
.button-account .login-text {
  display: none;
}

@media (min-width: 1024px) {
  .button-login,
  .button-account {
    padding: 0.5rem 1rem;
  }
  .button-login .login-text,
  .button-account .login-text {
    display: inline;
    font-size: 1rem;
    font-weight: 700;
  }
}

@media (max-width: 1023px) {
  .button-login,
  .button-account {
    width: 58px;
    height: 42px;
  }
}

.text-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #001f54;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease-in-out;
}

.text-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #2563eb;
  transition: width 0.2s ease-in-out;
}

/* .text-link:hover::after {
  width: 100%;
}

.text-link:hover {
  color: #2563eb;
} */

.text-link .link-text {
  display: none;
}

@media (min-width: 1024px) {
  .text-link .link-text {
    display: inline;
  }
}

@media (max-width: 1023px) {
  .text-link:hover .link-text {
    display: inline;
    position: absolute;
    background-color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
    z-index: 50;
    margin-left: 2rem;
  }
}

.account-section {
  position: relative;
}

.account-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.15);
  border-radius: 0.375rem;
  min-width: 200px;
  z-index: 50;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
}

.menu-item {
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #374151;
  font-size: 0.9rem;
  transition: background-color 0.15s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-item:hover {
  background-color: #f3f4f6;
}

.menu-item.logout {
  color: #ef4444;
}

.menu-item.logout:hover {
  background-color: #fef2f2;
}
@media (max-width: 768px) {
  .profile-menu {
    height: 35px;
    width: 29px;
  }
}
@media (min-width: 769px) {
  .profile-menu {
    display: none !important;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  border-radius: 24px;
  padding: 40px;
  /* width: 520px; */
  max-width: 90%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
  overflow-y: auto;
  overflow: scroll; /* Enables scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

/* Bottom sheet styles for small devices */
@media (max-width: 640px) {
  .modal-overlay {
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.6);
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 24px;
    max-height: 90vh;
    transform: translateY(100%);
    animation: slideUp 0.3s ease-out forwards;
  }

  @keyframes slideUp {
    to {
      transform: translateY(0);
    }
  }

  .close-btn {
    top: 15px;
    right: 15px;
    font-size: 20px;
  }
}

.title-card {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.phone-input {
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  box-sizing: border-box;
  height: 50px;
  outline: none;
}

.subtitle {
  color: #666;
  font-size: 15px;
  text-align: start;
  margin-bottom: 25px;
}

.input-country-box {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-direction: row;
  flex-wrap: nowrap;
}
.country-code {
  padding: 3px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100px;
}

.input-group-box:focus {
  border-color: #003580;
  box-shadow: 0 0 0 2px rgba(0, 53, 128, 0.2);
}

.otp-btn {
  width: 100%;
  background-color: #003580;
  color: white;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 25px;
}

.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.divider hr {
  flex: 1;
  border: none;
  height: 1px;
  background: #ccc;
}

.divider span {
  padding: 0 10px;
  color: #888;
  font-size: 14px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons button {
  width: 50px;
  height: 50px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.social-icons img {
  width: 56px;
  height: 56px;
  gap: 12px;
}

.footer-text {
  font-size: 12px;
  color: #666;
}

.footer-text a {
  color: #003572;
  text-decoration: none;
  font: inter;
  letter-spacing: 0;
  line-height: 18px;
}

.country-select-container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 7px;
  flex-shrink: 0; /* don't shrink below content */
  background-color: #fff;
}

.country-code {
  border: none;
  font-size: 14px;
  background: transparent;
  outline: none;
  width: 70%;
  min-width: 55px;
}

.selected-flag {
  margin-left: 3px;
  display: flex;
  align-items: center;
}

.flag-icon {
  width: 18px;
  height: 12px;
}
.otp-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Existing styles for the button */
}

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Ensure the button remains styled appropriately when disabled */
.otp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


.title-card {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.subtitle {
  color: #666;
  font-size: 15px;
  text-align: start;
  margin-bottom: 25px;
}

/* OTP Input Container */
.input-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
}

.input-group-box {
  width: 12%;
  aspect-ratio: 1 / 1;
  font-size: 24px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-group-box:focus {
  border-color: #003580;
  box-shadow: 0 0 0 2px rgba(0, 53, 128, 0.2);
}

.otp-btn {
  width: 100%;
  background-color: #003580;
  color: white;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 25px;
}

.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.divider hr {
  flex: 1;
  border: none;
  height: 1px;
  background: #ccc;
}

.divider span {
  padding: 0 10px;
  color: #888;
  font-size: 14px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons button {
  width: 50px;
  height: 50px;
  border: none;

  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.social-icons img {
  width: 56px;
  height: 56px;
  gap: 12px;
}

.footer-text {
  font-size: 12px;
  color: #666;
}

.footer-text a {
  color: #003572;
  text-decoration: none;
  font: inter;
  letter-spacing: 0;
  line-height: 18px;
}

.text-heading {
  width: 440px;
  height: 80px;
  gap: 12px;
  border: 1px;
  color: #1e1e1e;
  font-size: 24px;
}

.timer-section {
  margin: 10px 0;
  text-align: center;
}

.timer {
  color: #555;
  font-weight: bold;
}

.resend-btn {
  background: none;
  border: none;
  color: #003580;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}
.resend-btn:hover {
  text-decoration: underline;
}
.time-value {
  color: #d32f2f;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
}

.otp-btn,
.resend-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Existing styles for the buttons */
}

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Ensure buttons remain styled appropriately when disabled */
.otp-btn:disabled,
.resend-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .verify-container {
    width: 540px;
  }
}

/* Profile Filter Container */
.pf-container {
  /* display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px; */
  background-color: #00296b;
  /* border-radius: 20px; */
  /* padding: 1rem;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  position: relative; */
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  /* background-color: #fff; */
  /* border-radius: 20px; */
  padding: 1rem;
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 14px);
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
}

/* Navigation Menu */
.pf-nav {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

/* Header Title */
.pf-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 1rem;
}

/* Navigation Items Container */
.pf-items {
  display: flex;
  flex-direction: column;
}

/* Navigation Item */
.pf-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0.25rem 0;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #fff;
  background: none;
  border: none;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.pf-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: transparent;
  margin-right: 0.5rem;
}

.pf-item.active::before {
  background-color: #003572;
}

.pf-item:focus-visible {
  outline: 2px solid #003572;
  outline-offset: 2px;
}

.pf-item.active {
  background-color: #e0e2e6;
  color: #1e1e1e;
}

.pf-item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Header Section */
.pf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* Close Button */
.pf-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
  margin-left: auto;
}

.pf-close-btn:hover,
.pf-close-btn:focus-visible {
  color: #003572;
}

.pf-close-btn:focus-visible {
  outline: 2px solid #003572;
  outline-offset: 2px;
}

/* Floating Toggle Button */
.pf-floating-toggle {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 3000;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.pf-floating-toggle img {
  width: 20px;
  height: 20px;
}

.pf-floating-toggle.pf-toggle-visible {
  display: flex;
}

.pf-floating-toggle.pf-toggle-hidden {
  display: none;
}

.pf-floating-toggle:focus-visible {
  background-color: #f5f6f8;
  outline: 2px solid #003572;
  outline-offset: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .pf-container {
    max-width: 100%;
    border-radius: 0;
    padding: 0.75rem;
    position: relative;
    background-color: transparent;
  }

  .pf-nav {
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: #00296b;
    padding: 2rem 1rem;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .pf-nav.open {
    transform: translateX(0);
  }

  .pf-title {
    font-size: 1rem;
  }

  .pf-item {
    font-size: 0.75rem;
  }

  .pf-floating-toggle.pf-toggle-visible {
    /* display: flex; */
    display: none;
  }
}

@media (max-width: 480px) {
  .pf-container {
    padding: 0.5rem;
  }

  .pf-title {
    font-size: 0.9rem;
  }

  .pf-item {
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
  }

  .pf-floating-toggle img {
    width: 18px;
    height: 18px;
  }

  .pf-floating-toggle span {
    font-size: 0.8rem;
  }

  .pf-close-btn {
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) {
  .pf-floating-toggle {
    display: none !important;
  }

  .pf-nav {
    transform: none;
    position: static;
    box-shadow: none;
    padding: 0;
    height: auto;
  }

  .pf-header .pf-close-btn {
    display: none !important;
  }
}

.search-section {
  padding-left: 1rem;
  padding-right: 1rem;

  padding-top: 1rem;
  z-index: 100;
  overflow: visible;
  position: sticky; /* offset from header */
  z-index: 50;
}

.search-bar-outer-container {
  margin-bottom: 2rem;
}

.search-bar-container {
  background-color: #fff;
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  padding: 0;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.75rem;

  /* ✅ Add sticky support if class isn’t applied via JSX (just in case) */
  top: 64px;
  z-index: 40;
}

.search-fields-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  /* gap: 2rem; -> REDUCED gap for mobile */
  gap: 1rem;
  /* <<< CHANGED: Reduced vertical gap between fields on mobile */
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 24px;
  padding-bottom: 8px;

  /* Existing styles */
  .suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 20rem;

    @media screen and (min-width: 768px) {
      width: 35rem;
    }
  }

  .suggestion-item {
    padding: 0;
    display: block;
    position: relative;
  }

  .suggestion-icon {
    margin-right: 10px;
    color: #fa3605;
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Main suggestion styles */
  .main-suggestion {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
  }

  .main-suggestion:hover {
    background-color: #f5f5f5;
  }

  /* Sub-suggestions list styles */
  .sub-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 25px;
    /* Indentation for sub-suggestions */
    background-color: #fafafa;
    /* Slight background to differentiate */
    position: relative;
  }

  /* Vertical line connecting main suggestion to sub-suggestions */
  .sub-suggestions-list::before {
    content: '';
    position: absolute;
    left: 15px;
    /* Align with the MapPin icon's center */
    top: -10px;
    /* Start from the bottom of the main suggestion */
    bottom: 33px;
    width: 1.7px;
    background-color: #888;
    margin-left: 25.3px;
    /* Line color */
  }

  .sub-suggestions-list .sub-suggestion-item:last-of-type::before {
    bottom: 100%;
  }

  .sub-suggestion-item {
    padding: 8px 15px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between icon and text */
  }

  /* Remove the horizontal line */
  .sub-suggestion-item::before {
    display: none;
  }

  /* Style for the sub-suggestion icon */
  .sub-suggestion-icon {
    width: 30px;
    /* Adjust size as needed */
    height: 35px;
    object-fit: contain;
    /* Ensure the icon scales properly */
    flex-shrink: 0;
  }

  /* Remove the last-child pseudo-class for horizontal line since it's no longer needed */
  .sub-suggestions-list li:last-child::before {
    display: none;
  }

  /* .sub-suggestion-item:hover {
  background-color: #e8e8e8;
} */
  @media (min-width: 1024px) {
    flex-direction: row;
    gap: 0;
    /* Keep gap 0 for horizontal layout */
  }
}

@media (min-width: 768px) {
  .search-fields-wrapper {
    padding: 16px;
    /* gap: 1.5rem; */
    /* Optional: Adjust gap for tablet if needed */
  }

  .search-section {
    margin-top: -4.5rem;
  }
}

.search-field-item {
  width: 100%;
  position: relative;
  /* <<< ADDED: Establishes positioning context for popovers */
}

/* Common styles for input/buttons inside the wrapper */
.search-input,
.date-button,
.guests-button {
  width: 100%;
  height: 3.5rem;
  /* h-14 */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: 1px solid #d4d4d6;
  /* Common border */
  background-color: white;
  position: relative;
  /* Needed for z-index on focus */
  display: flex;
  align-items: center;
  font-size: 1rem;
  /* Remove individual rounding initially */
  border-radius: 0;
}

.search-input:focus,
.date-button:focus,
.guests-button:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb;
  /* Simulate ring */
  z-index: 10;
  /* Bring focused element forward */
}

/* Specific Padding & Icons */
.search-input {
  padding-right: 1.5rem;
  /* px-6 (24px) */
  padding-left: 1rem;
  /* pl-14 for icon */
  color: #1f2937;
  font-weight: 900;
}

.search-input::placeholder {
  color: #6b7280;
}

.search-input-div {
  border-radius: 0.75rem;
}

@media screen and (min-width: 768px) {
  .search-input-div {
    border-radius: 0.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .search-input-div {
    border-radius: 0.75rem 0 0 0.75rem;
    font-weight: bolder;
  }
}

.date-button {
  padding-left: 1.5rem;
  /* px-6 */
  padding-right: 1.5rem;
  /* px-6 */
  justify-content: flex-start;
  text-align: left;
}

.date-button:hover {
  background-color: #f9fafb;
}

.date-icon {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.date-display {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  text-align: center;

  @media screen and (min-width: 1024px) {
    width: 235px;
  }
}

.date-part {
  flex: 1 1 0%;
  text-align: center;
}

@media (min-width: 640px) {
  .date-part {
    text-align: left;
  }
}

.date-label {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
}

.date-value {
  color: #1f2937;
  font-weight: 900;
}

.date-button .date-value:empty::before {
  content: 'Select Date';
  color: #6b7280;
  font-weight: 400;
}

.guests-button {
  padding-left: 1.5rem;
  /* px-6 */
  padding-right: 1.5rem;
  /* px-6 */
  justify-content: space-between;
  text-align: left;
}

.guests-button:hover {
  background-color: #f9fafb;
}

.guests-button-content {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-right: 0.5rem;
}

.guests-icon {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.guests-summary {
  color: #1f2937;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 900;
}

.guests-chevron {
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 0.2s ease-in-out;
}

.guests-chevron.open {
  transform: rotate(180deg);
}

/* Rounding for grouped elements */
/* Mobile (stacked) */
.search-input.destination-input {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.guests-button {
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

@media (min-width: 768px) {
  .search-input.destination-input {
    border-radius: 0.75rem;
  }

  .guests-button {
    border-radius: 0.75rem;
  }

  .date-button {
    border-radius: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .search-input.destination-input {
    border-radius: 0;
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
  }

  .guests-button {
    border-radius: 0;
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
  }

  .date-button {
    border-radius: 0;
  }
}

/* Destination Input Icon positioning */
.input-icon-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  /* width: 300px; */
}

.input-icon-wrapper .input-icon {
  position: absolute;
  left: 1.5rem;
  /* px-6 */
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  z-index: 1;
}

.input-icon-wrapper:focus-within .input-icon {
  color: #2563eb;
}

/* Suggestions */
.suggestions-list {
  position: absolute;
  z-index: 50;
  top: 100%;
  /* <<< CHANGED: Position below the relative parent */
  left: 0;
  /* <<< CHANGED: Align to the left of the parent */
  margin-top: 0.25rem;
  /* <<< CHANGED: Optional small gap instead of negative margin */
  width: 100%;
  /* <<< CHANGED: Match the width of the parent container */
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  border: 1px solid #e5e7eb;
  max-height: 15rem;
  overflow-y: auto;
  /* margin-left: 32px; -> REMOVED */
  /* margin-top: -260px; -> REMOVED */
  /* width: 85%; -> REMOVED */
}

/* --- REMOVED Media Queries for suggestions-list positioning --- */
/*
@media screen and (min-width: 768px) {
    .suggestions-list {
        margin-left: 48px;
    }
}

@media screen and (min-width: 1024px) {
    .suggestions-list {
        margin-top: -80px;
        width: 32%;
    }
}

@media screen and (min-width: 1440px) {
    .suggestions-list {
        margin-left: 180px;
        width: 25%;
    }
}
*/

/* Optional: Add max-width on larger screens if 100% is too wide */
@media (min-width: 1024px) {
  .suggestions-list {
    /* max-width: 450px; */
    /* Example: Uncomment and adjust if needed */
  }
}

.suggestion-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #374151;
  display: flex;
  align-items: center;
}

.suggestion-item:hover {
  background-color: #eff6ff;
}

.suggestion-icon {
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.5rem;
  color: #9ca3af;
}

.search-destination-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out;
}

/* Calendar Popover */

/* Guest Selector Popover */
.guest-selector-popover {
  position: absolute;
  z-index: 50;
  top: 100%;
  /* <<< CHANGED: Position below the relative parent */
  right: 0;
  /* <<< CHANGED: Align to the right of the parent */
  margin-top: 0.25rem;
  /* <<< CHANGED: Optional small gap instead of negative margin */
  width: auto;
  /* <<< CHANGED: Let content determine width */

  max-width: 90vw;
  /* <<< ADDED: Prevent overflow on small screens */
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  border: 1px solid #e5e7eb;
  padding: 1rem;
  max-height: 70vh;
  overflow-y: auto;
  /* margin-top: -84px; -> REMOVED */
  /* width: 80%; -> REMOVED */
  /* margin-right: 32px; -> REMOVED */
  /* margin-left: 0px; -> REMOVED */
}

/* --- REMOVED Media Queries for guest-selector-popover positioning --- */
/*
@media screen and (min-width: 768px) {
    .guest-selector-popover {
        margin-right: 104px;
    }
}

@media screen and (min-width: 1024px) {
    .guest-selector-popover {
        margin-right: 56px;
        width: 30%;
    }
}

@media screen and (min-width: 1440px) {
    .guest-selector-popover {
        margin-right: 185px;
        width: 25%;
    }
}
*/

/* Optional: Adjust min-width on larger screens if needed */
@media (min-width: 1024px) {
  .guest-selector-popover {
    min-width: 350px;
    /* Example adjustment */
  }
}

.guest-selector-popover::-webkit-scrollbar {
  display: none;
}

.guest-room-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.guest-room-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.guest-room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.guest-room-title {
  font-weight: 600;
  color: #374151;
}

.remove-room-button {
  color: #ef4444;
  padding: 0;
  background: none;
  border: none;
}

.remove-room-button:hover {
  color: #b91c1c;
}

.guest-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.guest-control:last-child {
  margin-bottom: 0;
}

.guest-label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4b5563;
}

.guest-label i[data-lucide] {
  margin-right: 0.5rem;
  width: 1.125rem;
  height: 1.125rem;
  color: #6b7280;
}

.guest-label .guest-age {
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.guest-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guest-stepper button {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  padding-bottom: 2px;
}

.guest-stepper button:hover:not(:disabled) {
  background-color: #f3f4f6;
}

.guest-stepper button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.guest-stepper span {
  width: 1.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  color: #1f2937;
}

.add-room-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #2563eb;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0.5rem;
  border: 1px dashed #93c5fd;
  transition: background-color 0.15s ease-in-out;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.add-room-button:hover {
  background-color: #eff6ff;
}

.apply-guests-button {
  margin-top: 1rem;
  width: 100%;
  background-color: #00296b;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: background-color 0.15s ease-in-out;
  font-size: 0.875rem;
}

.apply-guests-button:hover {
  background-color: #001f54;
}

/* Search Button */
.search-button-wrapper {
  /* margin-top: 1rem; -> ADJUSTED margin */
  margin-top: 1.5rem;
  /* <<< CHANGED: Increased space above the search button */
  display: flex;
  justify-content: center;
  padding: 0 1rem 0.5rem;
}

@media (min-width: 768px) {
  .search-button-wrapper {
    padding: 0.5rem 0 1rem;
    margin-top: 1rem;
    /* <<< Optional: Can reduce margin slightly on larger screens if needed */
  }
}

.search-error-wrapper {
  padding: 0 1rem 0.5rem;
}

/* @media (min-width: 768px) {
  .search-error-wrapper {
    padding: 0.5rem 0 1rem;
   
  }
} */

/* Add padding top on desktop */
.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #00296b;
  color: white;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: background-color 0.15s ease-in-out;
  font-size: 1.125rem;
}

.search-button-search-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #00296b;
  color: white;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: background-color 0.15s ease-in-out;
  font-size: 1.125rem;

  @media screen and (min-width: 1024px) {
    padding: 0.75rem 0.75rem;
  }
}

.search-button:hover:not(:disabled) {
  background-color: #001f54;
}

.search-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.spinner {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  animation: spin 1s linear infinite;
}

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

/* Search Error */
.search-error {
  /* margin-top: 1rem; -> REMOVED: Moved margin to the wrapper */
  text-align: center;
  color: #dc2626;
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 0.375rem;
  padding: 0.75rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
}

.search-button-div {
  padding-left: 2rem;
  padding-top: 0.5rem;

  @media screen and (min-width: 375px) {
    padding-left: 4rem;
  }

  @media screen and (min-width: 425px) {
    padding-left: 12rem;
  }

  @media screen and (min-width: 768px) {
    padding-left: 20rem;
  }

  @media screen and (min-width: 1024px) {
    padding-left: 2rem;
  }
}

.edit-button {
  display: block;
  margin: 0 auto 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid #ccc;
  font-size: 0.875rem;
  background-color: #f3f4f6;
  cursor: pointer;
}

.child-age-select {
  width: 30%;
  padding: 0.5rem;
  font-size: 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #fff;
  color: #374151;
  margin-top: 0.25rem;
}

.child-age-select::-webkit-scrollbar {
  display: none;
}

.child-age-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #2563eb;
}

.search-summary-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem;
  margin: 1rem;
}

.search-summary-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #374151;
}

.edit-icon-button {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #2563eb;
  padding: 0.25rem 0.5rem;
}

.search-summary-text span {
  margin-right: 0.5rem;
  font-weight: 500;
}

.animated-fields {
  transition: all 0.3s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
}

.animated-fields.show {
  opacity: 1;
  max-height: 2000px;
  /* adjust based on your layout */
  transform: translateY(0);
}

.animated-fields.hide {
  pointer-events: none;
}

.search-collapsed-bar {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  /* background-color: #f3f4f6; */
  /* border: 1px solid #d1d5db; */
  border-radius: 0.75rem;
  margin: 1rem;
  /* color: #6b7280; */
  font-size: 0.875rem;
  cursor: pointer;
  user-select: none;
  gap: 0.75rem;
}

.collapsed-icon {
  flex-shrink: 0;
  color: #9ca3af;
}

.collapsed-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  line-height: 1.2;
  overflow: hidden;
}

.collapsed-destination {
  font-weight: 900;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}

.collapsed-details {
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 800;
}

.collapsed-edit-btn {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 1rem;
  padding-left: 0.5rem;
  flex-shrink: 0;
}

.animated-fields {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    max-height 0.4s ease;
  overflow: hidden;
}

.animated-fields.show {
  opacity: 1;
  max-height: 2000px;
  transform: translateY(0);
  pointer-events: auto;
}

.animated-fields.hide {
  opacity: 0;
  max-height: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.search-fields-wrapper,
.search-section {
  overflow: visible !important;
  position: relative;
}

.input-icon-wrapper-search-result {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;

  @media screen and (min-width: 1024px) {
    height: 75%;
    /* px-6 */
  }
}
/* Sticky Search Panel below header (non-Tailwind) */
.search-panel-fixed-wrapper {
  position: sticky;
  top: -0.5rem;
  z-index: 50;
  margin-bottom: 3rem;
}

.search-panel-inner {
  max-width: 1152px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 0 16px;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: -78px;
}

.month-view {
  padding: 0.5rem;
  /* Adjusted width slightly to better fit content */
  width: auto;
  min-width: 14rem; /* Keep a minimum width */
}

.month-header {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.day-cell {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  transition:
    background-color 0.1s ease-in-out,
    color 0.1s ease-in-out;
  border-radius: 9999px;
}

.day-cell.padding {
  background-color: transparent;
}

.day-button {
  cursor: pointer;
  background-color: #fff;
  color: #374151;
  border: 1px solid transparent;
  /* Add transparent border for consistent size */
}

.day-button:hover:not(.disabled):not(.selected) {
  background-color: #f3f4f6;
}

.day-button.disabled {
  color: #d1d5db;
  cursor: default;
}

.day-button.selected {
  background-color: #2563eb;
  color: #fff;
  border-radius: 9999px;
}

.day-button.selected:hover {
  background-color: #1d4ed8;
}

.day-button.in-range {
  background-color: #dbeafe;
  color: #1d4ed8;
  border-radius: 0;
}

.day-button.in-range:hover {
  background-color: #bfdbfe;
}

.day-button.start-range {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.day-button.end-range {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.day-button.start-range.end-range {
  border-radius: 9999px;
}

.calendar-popover {
  position: absolute;
  z-index: 50;
  top: 100%; /* <<< CHANGED: Position below the relative parent */
  left: 0; /* <<< CHANGED: Align left edge with parent's left edge */
  /* OR use right: 0; if you prefer it aligned to the right */
  /* OR use left: 50%; transform: translateX(-50%); to center */
  margin-top: 0.25rem; /* <<< CHANGED: Small gap instead of negative margin */
  /* margin-top: -164px; -> REMOVED */
  width: auto; /* Let content determine width */
}

.calendar-popover-content {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  border: 1px solid #e5e7eb;
  padding: 1rem;
  /* display: inline-block; -> Can likely be removed if .calendar-popover has width: auto */
  /* min-width: 15rem; -> Still useful */
  min-width: 15rem;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.calendar-nav-button {
  padding: 0.25rem;
  border-radius: 9999px;
  color: #4b5563;
  cursor: pointer; /* Added cursor pointer */
}

.calendar-nav-button:hover {
  background-color: #f3f4f6;
}

.calendar-months-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.calendar-mobile-separator {
  width: 100%;
  border-top: 1px solid #e5e7eb;
  margin-top: 1rem; /* Add some space */
  margin-bottom: 1rem; /* Add some space */
}

@media (min-width: 768px) {
  .calendar-months-container {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .calendar-mobile-separator {
    display: none;
  }
}

.calendar-done-button {
  margin-top: 1rem;
  width: 100%;
  background-color: #00296b;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: background-color 0.15s ease-in-out;
  font-size: 1rem; /* Changed from 0.875rem to match search button */
  cursor: pointer; /* Added cursor pointer */
  border: none; /* Ensure no default border */
}

.calendar-done-button:hover {
  background-color: #001f54;
}

.gateway-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex-shrink: 0;
  padding: 12px;
  width: 250px;
}
.gateway-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 10px;
  scroll-behavior: smooth;
}

.gateway-card:hover {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.gateway-card:hover h3 {
  color: #00296b;
}

.gateway-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
}

.gateway-image-large {
  grid-column: span 2 / span 2;
}

.gateway-image-large img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.gateway-image-small img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
}

.gateway-content {
  padding: 1rem;
}

.gateway-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: #1f2937;
}

.gateway-description {
  font-size: 0.875rem;
  color: #4b5563;
}
.gateway-container::-webkit-scrollbar {
  display: none;
}
.gateway-description span {
  color: #f9ab34;
}

@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: var(
    --custom-highlight-background,
    linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    )
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}

.temple-city-item {
  text-align: center;
  cursor: pointer;
}

.temple-city-image-wrapper {
  /* aspect-ratio: 1 / 1; */
  height: 150px;
  width: 200px;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s ease;
}

.temple-city-item:hover .temple-city-image-wrapper {
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.temple-city-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  /* min-height: 212px; */
}

.temple-city-item:hover .temple-city-image {
  transform: scale(1.05);
}

.temple-city-name {
  font-weight: 500;
  color: #374151;
  transition: color 0.15s ease-in-out;
}

.temple-city-item:hover .temple-city-name {
  color: #2563eb;
}
.temple-cities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 14px;
}

@media (max-width: 1024px) {
  .temple-cities {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .temple-cities {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .temple-cities {
    grid-template-columns: repeat(2, 1fr);
  }
  .temple-city-image-wrapper {
    height: 150px;
    width: 150px;
  }
}

@media (max-width: 320px) {
  .temple-cities {
    grid-template-columns: repeat(1, 1fr);
  }
  .temple-city-image-wrapper {
    height: 150px;
    width: 150px;
  }
  .temple-city-item {
    justify-items: center;
  }
}

.why-book-container {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
  padding: 2rem 1rem;
}

/* Desktop: left heading, right list */
@media (min-width: 768px) {
  .why-book-container {
    grid-template-columns: 1fr 2fr;
  }
}

.why-book-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .why-book-text {
    align-items: flex-start;
    text-align: left;
  }
}

.why-book-text h2 {
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
  /* ~30px */
  font-weight: 600;
  color: #1e293b;
  /* Slightly dark text */
}

.why-book-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-book-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #334155;
  /* Slate tone for text */
}

.why-book-icon {
  color: #f97316;
  /* Tailwind orange-500 */
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.travel-smarter-container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .travel-smarter-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travel-smarter-text {
    text-align: left;
  }
}

.travel-smarter-text {
  text-align: center;
}

.travel-smarter-text .section-subtitle-left {
  color: #d1d5db;
  font-size: 1.125rem;
}

.travel-smarter-text .section-title-left {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .travel-smarter-text .section-title-left {
    font-size: 2.25rem;
  }
}
.travel-smarter-image {
  display: flex;
  justify-content: center;
}

.travel-smarter-image img {
  border-radius: 0.5rem;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  max-height: 24rem;
}

/* Best Destinations Section */
.destination-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition:
    background-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  /* Added box-shadow transition for smooth highlight effect */
}

.destination-item:hover {
  background-color: #e0f2fe;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  /* Added subtle shadow for card highlight on hover */
}

.destination-image {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid transparent; /* Changed to transparent for rainbow effect */
  transition: border-color 0.15s ease-in-out;
}

/* Rainbow border animation on hover */
@keyframes rainbow-border {
  0% {
    border-color: #ff0000;
  }
  16% {
    border-color: #ff9900;
  }
  33% {
    border-color: #33cc33;
  }
  50% {
    border-color: #00ccff;
  }
  66% {
    border-color: #6633ff;
  }
  83% {
    border-color: #ff3399;
  }
  100% {
    border-color: #ff0000;
  }
}

.destination-item:hover .destination-image {
  animation: rainbow-border 2s linear infinite; /* Rainbow animation on hover */
}

.destination-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.15s ease-in-out;
}

.destination-item:hover .destination-name {
  color: #00296b;
}

.faq-container {
  max-width: 42rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.faq-question-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.faq-question {
  font-weight: 600;
  color: #374151;
  flex-grow: 1;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
}

.faq-icon-open {
  color: #2563eb;
}

.faq-icon-closed {
  color: #6b7280;
}

.faq-answer {
  margin-top: 0.5rem;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
}

.faq-answer.open {
  max-height: 24rem;
  /* Adjust as needed */
}

.faq-answer p {
  font-size: 0.875rem;
  color: #4b5563;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  padding-right: 1.5rem;
}

.footer {
  background-color: #001f54;
  color: #e5e7eb;
  padding: 2.5rem 1.5rem;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .footer-container {
    justify-content: flex-start; /* Align items to start */
  }

  .footer-copyright {
    flex: 0 0 auto; /* Keep copyright tight to the left */
  }

  .footer-links {
    flex: 1; /* Take available space to push socials right */
    display: flex;
    justify-content: center; /* Center links within their space */
  }

  .footer-socials {
    flex: 0 0 auto; /* Keep socials tight */
    margin-left: auto; /* Push socials to the far right */
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-link-text {
    display: none; /* Hide only the text of links */
  }

  .footer-links {
    display: flex; /* Keep icons visible */
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .footer-socials {
    margin-top: 1rem;
    justify-content: center;
    margin-left: 0; /* Reset right-alignment for mobile */
  }

  .footer-copyright {
    text-align: center;
  }
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.copyright-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: #d1d5db;
}

.powered-by {
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link {
  background: none;
  border: none;
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.footer-link:hover {
  color: #60a5fa;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-socials a {
  color: #9ca3af;
  transition:
    color 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.footer-socials a:hover {
  color: #60a5fa;
  transform: translateY(-2px);
}

.vibe {
  /* padding: 16px; */
  /* background-color: #ffffff; */
  border-radius: 0.5rem;
  /* width: 350px; */
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  /* font-family: sans-serif; */
  /* height: 300px; */
  flex-shrink: 0;
  gap: 16px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.vibe:hover {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.vibe:hover .vibe-title p {
  color: #00296b;
}

.vibes-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Exactly 4 equal-width columns */
  gap: 16px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}
.show-more-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-more-container button {
  font-size: 16px;
  font-weight: 600;
  color: #00296b;
}
.vibe-title {
  padding-top: 10px;
  text-align: left;
  color: #1f2937;
}

.vibes-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.vibes-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.vibes-details p:first-child {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #222;
}

.vibes-details p:last-child {
  font-size: 14px;
  color: #6c757d;
  margin-top: 4px;
}

.action-button {
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  width: 36px;
  height: 36px;
}

.vibes-container::-webkit-scrollbar {
  display: none;
}

.vibes-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* .vibe-from-home {
  background-color: #0080811f;
  padding-top: 40px;
  height: 530px;
} */
.scroll-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.scroll-button {
  color: #00296b;
  font-size: 20px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.vibe-navbar {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 12px 16px;
}
.vibe-tab {
  padding: 8px 16px;
  border: none;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-bottom: 2px solid transparent;
}
.vibe-tab.active {
  border-bottom: 2px solid #00296b;
}
.image-wrapper {
  position: relative;
  border-radius: 0.5rem;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.vibe-navbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
@media (max-width: 768px) {
  .vibe {
    max-width: 280px;
  }
  .vibes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 4 equal-width columns */
  }
}
@media (max-width: 480px) {
  .vibe {
    max-width: 220px;
  }

  .vibes-details p:first-child {
    font-size: 16px;
  }

  .vibes-details p:last-child {
    font-size: 12px;
  }

  .arrow-icon {
    width: 28px;
    height: 28px;
  }
  .vibes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Exactly 4 equal-width columns */
  }
}

.popular-destinations {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, 184px);
  gap: 16px;
  justify-content: center;
  margin: 20px 0; */
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 10px;
  scrollbar-width: none; /* Firefox */
}
.popular-destinations-card {
  position: relative;
  cursor: pointer;
  width: 200px;
  flex-shrink: 0;
}

.image-wrapper {
  position: relative;
}

.popular-destinations-image {
  width: 100%;
  height: 200px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.city-name-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.popular-destinations::-webkit-scrollbar {
  display: none;
}
.scrollable-wrapper {
  position: relative;
  width: 100%;
  margin: 20px 0;
}
.scroll-button {
  height: 45px;
  width: 45px;
  flex: '0 0 auto';
  padding: 8px 12px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-color: #fff;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
  box-shadow:
    0px 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.scroll-button-left,
.scroll-button-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.scroll-button-left:hover,
.scroll-button-right:hover {
  background-color: #f0f0f0;
}

.scroll-button-left {
  left: -10px;
}

.scroll-button-right {
  right: -10px;
}

.bg-side-cont {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 290px;
  /* background-color: #f2f2f2; */
  border-radius: 20px;
  padding: 1rem;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 14px);
  overflow-y: auto;
  /* -ms-overflow-style: none;
  /* IE and Edge */
  /* scrollbar-width: none; */
  border: 1px solid #d8dde5;
  /* margin-top: 40px; */
}

.bg-side-cont::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.sidenav-section {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.sidenav-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 1rem;
}

.map-container {
  position: relative;
  width: 254px;

  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.explore-button {
  position: absolute;
  bottom: 0;

  transform: translateX(-50%);
  height: 40px;
  background-color: #ffffff;
  color: #007bff;
  font-weight: bold;
  border: 2px solid #007bff;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  width: 220px;
  align-items: center;
  gap: 6px;
  z-index: 1;
  transition: background-color 0.2s;
  margin-bottom: 5px;
}

.explore-button:hover {
  background-color: #f0f8ff;
}

.icon {
  font-size: 16px;
}

.filter-section {
  margin-bottom: 1rem;
}

.filter-section summary {
  font-size: 0.9rem;
  font-weight: 600;
  color: #003572;
  cursor: pointer;
  padding: 0.5rem 0;
}

.filter-item {
  margin: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-item label {
  font-size: 0.85rem;
  color: #697586;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.filter-item input[type='checkbox'] {
  accent-color: #00296b;
  cursor: pointer;
}

/* Search Bar Styles with Icon Outside */
.search-container {
  padding: 0.5rem 0;
  position: relative;
  display: flex;
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.search-inputs {
  width: 100%;
  padding: 0.25rem 2rem 0.25rem 2rem;
  /* Adjusted padding since icon is outside */
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.85rem;
  box-sizing: border-box;
  margin: 0;
  display: block;
  /* Space for icon outside */
  height: 40px;
}

/* Filter Icon and Text Styles (Hidden in sidebar) */
.filter-toggle {
  display: none;
  /* Moved to SearchResult.css */
}

/* Sidebar Header for Close Button */
.sidenav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.close-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e1e1e;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.close-button:hover {
  color: #003572;
}

/* Mobile and Tablet Styles */
@media (max-width: 1023px) {
  .bg-side-cont {
    width: 100%;
    border-radius: 0;
    padding: 0.75rem;
    border: none !important;
  }

  .sidenav-section:not(.open) ~ .filter-toggle {
    display: none;
  }

  .sidenav-section.open ~ .filter-toggle {
    display: none;
  }

  .sidenav-section {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    /* width: 80%; */
    max-width: 300px;
    background-color: #f5f6f8;
    padding: 2rem 1rem;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* for iOS smooth scroll */
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .sidenav-section.open {
    transform: translateX(0);
  }

  .sidenav-title {
    font-size: 1rem;
  }

  .filter-item label {
    font-size: 0.75rem;
  }

  .search-inputs {
    font-size: 0.75rem;
    height: 40px;
  }

  .search-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 768px) {
  .bg-side-cont {
    padding: 0rem;
    z-index: 1;
  }
  .sidenav-header {
    margin-top: 3rem;
  }
  .sidenav-title {
    font-size: 0.9rem;
  }

  .filter-section summary {
    font-size: 0.8rem;
  }

  .filter-item label {
    font-size: 0.7rem;
  }

  .close-button {
    font-size: 1.2rem;
  }

  .search-inputs {
    font-size: 0.7rem;
    height: 40px;
    padding-left: 2rem;
  }

  .search-icon {
    width: 12px;
    height: 12px;
    left: 10px;
  }
}

/* Tablet-Specific Adjustments (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .bg-side-cont .sidenav-section .sidenav-header .close-button {
    display: none !important;
  }

  .sidenav-section {
    transform: none;
    position: static;
    box-shadow: none;
    padding: 0;
    height: auto;
  }

  .filter-section {
    margin-bottom: 0.75rem;
  }

  .filter-item {
    margin: 0.3rem 0;
  }
}

/* Large and Extra-Large Devices */
@media (min-width: 1025px) {
  .bg-side-cont .sidenav-section .sidenav-header .close-button {
    display: none !important;
  }

  .sidenav-section {
    transform: none;
    position: static;
    box-shadow: none;
    padding: 0;
    height: auto;
  }
}

.apps {
  display: flex;
  gap: 1rem;
  margin: auto;
  max-width: 1200px;
  width: 100%;
  margin-top: 48px;
}

.search-results-container {
  flex: 1;
  /* padding: 1rem; */
  max-width: 900px;
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
}

.search-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  border-radius: 1rem;
  /* padding: 1rem; */
}

.search-summary-text {
  display: flex;
  flex-direction: column;
}

.search-summary h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e1e1e;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
}

.search-summary p {
  color: #666;
}

.search-summary-actions {
  display: flex;
}

.icon-button {
  border: none;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-button img {
  width: 30px;
  height: 30px;
}

.icon-button.menu {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.icon-button.map {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
/* searchResult.css */
/* .loader-containerss {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; 
} */
.icon-button.dark-bg {
  background-color: #003572;
  /* Dark background */
  background-color: #003572;
}

.icon-button.light-bg {
  background-color: #f2f2f2;
}

.icon-button:hover {
  box-shadow: 0 0 6px rgba(0, 43, 92, 0.3);
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}

.search-results-container .filter-toggle {
  display: none !important;
}

.floating-filter-button {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 3000;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #00296b;
}

.floating-filter-button img {
  width: 20px;
  height: 20px;
}

/* .floating-filter-button.filter-button-visible {
  display: flex;
} */

.floating-filter-button.filter-button-hidden {
  display: none;
}
/* @media (min-width:1024) {
   .floating-filter-button {
    display: none !important;
  }
} */

@media (max-width: 1024px) {
  /* .floating-filter-button {
    display: none !important;
  } */
  .sr-searchpanel {
    padding-left: 0 !important; /* Explicitly remove padding-left */
    padding-right: 0 !important;
  }
}

@media (max-width: 1023px) {
  .floating-filter-button {
    display: none;
  }

  .floating-filter-button.filter-button-visible {
    display: flex;
  }
}

.fav-icon,
.more-icon {
  height: 24px;
  width: 24px;
}

.global-search-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.search-listing-panel {
  margin-top: 1rem;
}

.loading,
.error,
.no-results {
  text-align: center;
  padding: 2rem;
  font-family: Inter, sans-serif;
  color: #1e1e1e;
  font-size: 1rem;
}

.loading {
  color: #003572;
}

.error {
  color: #d32f2f;
}

.no-results {
  color: #697586;
}

.search-results-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 2.5rem; */
  /* top: 50px; 
  margin-top: 50px;*/
}

.sr-searchpanel {
  background-color: #fff;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: -0.5rem;
  z-index: 30;
  width: 100%;
  padding: 0 1rem;
  transition: top 0.3s ease-in-out;
  padding-left: 140px;
  padding-right: 70px;
}

.sr-searchpanel.sticky-top {
  top: 0;
}

.header {
  /* position: fixed; */
  top: 0;
  width: 100%;
  z-index: 40;
  background-color: rgb(242, 242, 242);
  transition: transform 0.3s ease-in-out;
}

.header.hidden {
  transform: translateY(-100%);
}

@media (max-width: 768px) {
  .apps {
    flex-direction: column;
    max-width: 100%;
    margin-top: -6rem;
  }

  .search-results-container {
    /* max-width: 100%; */
    padding: 0.5rem;
    position: relative;
    top: 0;
    width: 90%;
  }

  .search-summary {
    margin-top: 6rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    z-index: 1;
  }

  .loading,
  .error,
  .no-results {
    font-size: 0.9rem;
    padding: 1rem;
  }

  /* .search-result-div {
    width: fit-content;
  } */

  .sr-searchpanel {
    position: static !important; /* Force normal flow */
    height: auto !important; /* Remove fixed height */
    padding: 0 !important; /* Remove all padding */
    padding-left: 0 !important; /* Explicitly remove padding-left */
    padding-right: 0 !important; /* Explicitly remove padding-right */
    box-shadow: none !important; /* Remove shadow */
    z-index: auto !important;
    background: none !important; /* Remove background */
    width: auto !important; /* Remove fixed width */
    transition: none !important; /* Remove transition */
    margin: 0 !important; /* Remove any margins */
    border: none !important;
    /* margin-top: 24px  !important; */
  }
  .search-summary-text {
    display: none !important;
  }
}

.radision {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  /* background-color: #f2f2f2; */
  max-width: 1000px;
  margin: 16px auto;
  align-items: flex-start;
  box-sizing: border-box;
  height: 245px; /* Fixed height for consistent layout */
  overflow: hidden; /* Hide overflowing content */
  cursor: pointer;
}

.radision:hover {
  border-color: #0055b8;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
  /* transform: translateY(-10px); */
}

.radision-image img {
  border-radius: 8px;
  object-fit: cover;
  width: 200px;
  height: 200px;
}

.details-container {
  flex: 1;
  display: flex;
  gap: 16px;
  width: 100%;
  position: relative;
}

.details-container::before {
  content: '';
  position: absolute;
  top: -17px;
  height: 178%;
  left: calc(50% - -80px);
  width: 1px;
  background-color: #e5e7eb;
  z-index: 1;
  bottom: 22px;
}

.details-row-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 220px;
  overflow: hidden;
}

.details-row-button {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 150px;
  max-height: 220px;
  overflow: hidden;
  align-items: flex-end;
}

.radision-name-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 17rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 81px;
}

.radision-name-rating h2 {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 22px;
}

.radision-location {
  font-size: 14px;
  color: #697586;
  width: 15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 64px;
}

.radision-location .city {
  color: #00296b;
  font-weight: 500;
}

.radision-facility {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radision-facility p {
  padding: 4px 12px;
  border-radius: 16px;
  border: 1px solid #d1d5db;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  background-color: #f5f6f8;
  transition: border-color 0.3s ease;
}

.radision-facility p:hover {
  border-color: #87ceeb;
}

.tile__placeHolder {
  display: flex;
  align-items: center;
  width: 100%;
}

.font12 {
  font-size: 12px;
}

.font14 {
  font-size: 14px;
}

.pc__middle {
  justify-content: flex-start;
}

.persuasion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pc__inclusionsList {
  display: flex;
  flex-direction: column;
}

.persuasion__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.persuasion__item__img {
  width: 16px;
  height: 16px;
  max-width: 16px;
}

.greenText {
  color: rgb(0, 126, 125);
}

.sprite.singleGreenTickIcon {
  width: 16px;
  height: 16px;
  background-position: left top;
  background-repeat: no-repeat;
  display: inline-block;
}

.radision-rating2 {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.radision-rating2 .favorite img,
.radision-rating2 .threedots img {
  width: 20px;
  height: 20px;
}

.radision-price {
  white-space: nowrap;
  text-align: right;
}

.radision-price h1 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.radision-taxes {
  font-size: 12px;
  line-height: 16px;
  color: #697586;
  font-weight: 400;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

.radision-book {
  margin-top: auto;
}

.radision-book button {
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #00296b;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
}

@media (max-width: 600px) {
  .radision {
    flex-direction: column;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    height: auto;
    overflow: visible;
  }

  .details-container {
    flex-direction: column;
    gap: 8px;
  }

  .details-container::before {
    display: none;
  }

  .details-row-top {
    max-height: none;
  }

  .details-row-button {
    max-height: none;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
  }

  .radision-image img {
    width: 380px;
    height: 220px;
    border-radius: 8px;
  }

  .radision-name-rating {
    width: auto;
    max-height: none;
  }

  .radision-name-rating h2 {
    font-size: 16px;
    white-space: normal;
  }

  .radision-location {
    font-size: 12px;
    width: auto;
    white-space: normal;
    max-height: none;
  }

  .radision-facility p {
    font-size: 11px;
    padding: 4px 8px;
  }

  .tile__placeHolder {
    width: auto;
    flex: 1;
    min-width: 0;
    order: 1;
  }

  .radision-rating2 {
    order: 2;
    justify-content: flex-end;
    width: auto;
    flex: 0 0 auto;
  }

  .radision-price {
    order: 3;
    text-align: right;
    width: auto;
    flex: 0 0 auto;
  }

  .radision-taxes {
    order: 4;
    font-size: 10px;
    text-align: right;
    width: auto;
    flex: 0 0 auto;
  }

  .radision-book {
    order: 5;
    width: 100%;
  }

  .details-row-button > .radision-rating2,
  .details-row-button > .radision-price,
  .details-row-button > .radision-taxes,
  .details-row-button > .radision-book {
    flex: 0 0 auto;
    align-self: flex-end;
  }

  .details-row-button {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .tile__placeHolder {
    display: none;
  }
}

.no-data-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  /* background-color: #f6f9ff; */
  width: 100%;
  border-radius: 1rem;
  box-sizing: border-box;
  min-height: 100vh;
  /* height: 100%; */

  overflow: auto;
}

.no-data-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
}

.no-data-message {
  font-size: 1.2rem;
  color: #555;
  word-break: break-word;
}

/* Responsive styles for tablets and below */
@media (max-width: 768px) {
  .no-data-image {
    max-width: 70%;
  }

  .no-data-message {
    font-size: 1rem;
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 480px) {
  .no-data-container {
    padding: 1rem;
  }

  .no-data-image {
    max-width: 90%;
  }

  .no-data-message {
    font-size: 0.95rem;
  }
}

.map-view-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px; /* Ensure container has a minimum height \*/
}

.map-section {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.zoom-controls {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.zoom-button {
  margin: 5px;
  padding: 8px 12px;
  font-size: 18px;
  background-color: #003572;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.zoom-button:hover {
  background-color: #002555;
}

.hotel-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  display: flex;
  align-items: center;
  max-width: 300px;
  z-index: 1000;
  pointer-events: none;
}

.card-content {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hotel-details {
  display: flex;
  flex-direction: column;
}

.hotel-details h4 {
  margin: 0;
  font-size: 16px;
}

.hotel-details p {
  margin: 0;
  font-size: 14px;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .map-view-container,
  .map-section {
    height: 45vh;
    min-height: 250px;
  }
  .zoom-button {
    padding: 4px 6px;
    font-size: 12px;
  }
  .hotel-card {
    max-width: 200px;
  }
  .hotel-details h4 {
    font-size: 14px;
  }
  .hotel-details p {
    font-size: 12px;
  }
  .card-content img {
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 375px) and (max-width: 424px) {
  .map-view-container,
  .map-section {
    height: 48vh;
    min-height: 260px;
  }
  .zoom-button {
    padding: 5px 7px;
    font-size: 13px;
  }
  .hotel-card {
    max-width: 220px;
  }
  .hotel-details h4 {
    font-size: 14px;
  }
  .hotel-details p {
    font-size: 12px;
  }
  .card-content img {
    width: 80px;
    height: 80px;
  }
}
.map-view-container {
  position: relative;
  width: 100%;
  height: auto;
}

.map-section {
  position: relative;
  height: 500px;
}

.hotel-card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-content {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.hotel-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.radius-selector {
  margin-bottom: 10px;
}

@media screen and (min-width: 425px) and (max-width: 767px) {
  .map-view-container,
  .map-section {
    height: 55vh;
    min-height: 280px;
  }
  .zoom-button {
    padding: 6px 8px;
    font-size: 14px;
  }
  .hotel-card {
    max-width: 250px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .map-view-container,
  .map-section {
    height: 65vh;
    min-height: 350px;
  }
  .zoom-button {
    padding: 10px 14px;
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .map-view-container,
  .map-section {
    height: 70vh;
    min-height: 400px;
  }
  .zoom-button {
    padding: 10px 14px;
    font-size: 18px;
  }
}

@media screen and (min-width: 1440px) and (max-width: 2560px) {
  .map-view-container,
  .map-section {
    height: 75vh;
    min-height: 450px;
  }
  .zoom-button {
    padding: 12px 16px;
    font-size: 20px;
  }
}

.modify-search {
  height: fit-content;
  padding: 10px;
  background-color: #edf2fb;
  margin-top: 60px;
}
.hotel-name {
  font-size: 24px;
  font-weight: 700;
  height: fit-content;
  /* margin-top: 80px; */
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  display: flex;
  gap: 12px;
  padding: 16px 0;
  /* align-items: center; */
}

.hotel-name img {
  height: 34px;
}

.hotel-name button {
  max-height: 24px;
}

.amenities-update-search-card {
  display: flex;
  gap: 24px;
  max-width: 100%;
  margin-top: 20px;
  flex-wrap: wrap;
}
.floating-nav {
  position: fixed;
  /* top: 80px; */
  width: 100%;
  height: fit-content;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  opacity: 1;
  z-index: 4;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
}
.search-results-page {
  display: block;
  background-color: #fff;
}
.map-nearby-places {
  display: flex;
  gap: 10px;
  padding: 20px 0px;
}

@media (max-width: 480px) {
  .amenities-update-search-card {
    display: block;
    max-width: 100%;
  }
  .search-results-page {
    width: 480px;
  }
  .floating-nav {
    position: sticky;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: space-between;
    padding: 10px;
    gap: 14px;
    width: 480px;
    box-sizing: border-box; /* Include padding in width */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-shrink: 0;
  }
  .map-nearby-places {
    display: inline-block;
    height: fit-content;
  }

  .floating-nav::-webkit-scrollbar {
    display: none; /* Hide scrollbar in WebKit browsers */
  }
}

@media (max-width: 768px) {
  .modify-search {
    background-color: #fff;
  }
  .map-nearby-places {
    display: block;
  }
}
.detail-sekeleton-loader {
  margin-top: 5rem !important;
}

.section-review {
  background-color: #f6f9ff;
  padding: 20px;
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* User Rating & Reviews Header */
.user-rating-header {
  margin-bottom: 10px;
  /* Space below the header container */
}

.user-rating-header h2 {
  font-size: 24px;
  color: #1a2b4b;
  margin-bottom: 15px;
}

.tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;

  padding-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
}

.tab-button {
  position: relative;
  background-color: transparent;
  border: none;
  padding: 10px 0;
  cursor: pointer;

  font-size: 16px;
  font-weight: 500;
  color: #697586;
  white-space: nowrap;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.tab-button.active {
  color: #000;
  font-weight: 700;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #007bff;
  border-radius: 2px;
}

.tab-button::before,
.tabs::before,
.tabs::after {
  content: none !important;
  display: none !important;
}

.main-reviews-layout {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  position: relative;
}

.main-reviews-layout::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #e0e0e0;
  transform: translateX(-50%);

  @media (max-width: 992px) {
    display: none;
  }
}

.summary-and-categories-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 2;
  min-width: 380px;
  box-sizing: border-box;
}

.individual-reviews-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 3;
  min-width: 450px;
  box-sizing: border-box;
}

.overall-summary-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  align-items: flex-start;
}

.overall-summary-left-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 280px;
  gap: 20px;
  padding-right: 25px;
  border-right: 1px solid #e0e0e0;
}

.overall-rating-score {
  text-align: center;
  flex-shrink: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.overall-rating-score .rating-value {
  font-size: 52px;
  font-weight: bold;
  color: #003572;
  display: block;
  margin-bottom: 5px;
  gap: 6px;
}

.overall-rating-score .rating-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  align-items: start;
}

.overall-rating-score .rating-count {
  font-size: 15px;
  color: #697586;
}

.rating-breakdown {
  flex-direction: column;
  min-width: 180px;
  padding-top: 15px;
}

.rating-bar-item {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  font-size: 14px;
}

.rating-bar-item:last-child {
  margin-bottom: 0;
}

.rating-type {
  width: 80px;
  color: #555;
  margin-right: 12px;
  text-align: start;
}

.rating-bar-container {
  flex-grow: 1;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 12px;
}

.rating-info-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* left-align the text */
  margin-top: 4px;
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  /* white text */
}

.rating-count {
  font-size: 13px;
  color: #cbd5e1;
  /* light gray-blue for secondary text */
}

.rating-bar-fill {
  height: 100%;
  background-color: hsl(207, 87%, 6%);
  border-radius: 5px;
  width: 10px;
}

.rating-percentage {
  width: 45px;
  text-align: right;
  color: #555;
  font-weight: 500;
}

/* Right Column within Overall Summary: Reviews Summary Text */
.reviews-summary-text {
  flex: 2;
  min-width: 350px;
  padding-left: 25px;
}

.reviews-summary-text h4 {
  font-size: 18px;
  color: #1a2b4b;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-summary-text h4 img {
  height: 24px;
  width: 24px;
}

.reviews-summary-text p {
  font-size: 15px;
  color: #697586;
  line-height: 1.6;
}

.summary-and-categories-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.last-10-ratings-section,
.rating-categories-section {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rating-badge-small {
  background-color: #003572;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

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

.category-name {
  font-size: 15px;
  color: #333;
}

.category-rating {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #003572;
  border: 1px solid #003572;
  border-radius: 5px;
  padding: 4px 8px;
  text-align: center;
  margin-bottom: 8px;
}

.review {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.review:last-child {
  border-bottom: none;
}

.trip-type-tab-button:hover {
  background-color: #f0f0f0;
}

.trip-type-tab-button.active {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}

.overall-summary-section {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.overall-rating-card {
  background-color: #e0f2f7;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
  width: 180px;
  display: flex;
  color: #fff;
  max-width: 55px;
  gap: 5px;
  height: 28px;
  border-radius: 14px;
  align-items: center;
  padding: 4px 8px;
  font-size: 15px;
  font-weight: 600;
}

.star {
  height: 16px;
  width: 16px;
  padding: 0;
  vertical-align: middle;
}

.review-title-box {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.review-title-box p {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #1a2b4b;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}

.gueat-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: black;
  margin-top: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.gueat-details .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.gueat-details .dot {
  font-size: 14px;
  line-height: 1;
  color: black;
  font-weight: 500;
}

.ratings-div {
  padding-left: 6px;
}

.photos-list {
  height: 120px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-grow: 1;
}

.filter-by-label {
  font-size: 14px;
  color: #666;
  font-weight: bold;
  margin-right: 5px;
  flex-shrink: 0;
  scroll-behavior: none;
  margin-top: 15px;
  margin-bottom: 20px;
}

.review-image {
  border-radius: 10px;
  max-height: 120px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.show-more {
  color: #008cfe;
  cursor: pointer;
  text-align: center;
  padding: 10px 0;
  font-weight: 600;
  margin-top: 15px;
  font-size: 15px;
}

.review {
  padding: 15px 0;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.review:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eee;
  /* Lighter divider for reviews */
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  /* Space below header */
}

.user-rating-badge {
  background-color: hsl(211, 86%, 20%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 6px;
}

.user-rating-badge img {
  width: 12px;
  height: 12px;
}

.review:last-child {
  border-bottom: none;
}

.review.last-review {
  border-bottom: none;
}

.review-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  max-width: 700px;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.8rem;
  border: none;
  background: none;
  cursor: pointer;
  color: #555;
}

@media (max-width: 992px) {
  .main-reviews-layout {
    flex-direction: column;
    gap: 20px;
  }
}

.review-main-card {
  width: 100%;
  max-width: 1300px;
  padding: 0.5rem;
  background: #fff;
  border-radius: 16px;
  scroll-behavior: none5;
}

.review-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.review-column-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-column-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0rem;
  max-height: 800px;
  overflow-y: auto;
  padding-right: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #eee;
  scroll-behavior: none;
}

.rating-bar-item,
.category-item,
.review {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.overall-rating-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-bar-container {
  height: 10px;
  background: #eee;
  border-radius: 5px;
  flex: 1;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background-color: #4caf50;
}

.review-text.expanded {
  max-height: none;
}

.review-text {
  max-height: 3.6em;
  overflow: hidden;
  font-size: 13;
}

.read-more {
  color: #008cfe;
  cursor: pointer;

  .filter-by-tags {
    width: 100%;
  }

  .sort-by-dropdown-container {
    width: 100%;
    justify-content: flex-end;
    /* Align to right */
  }
}

.show-more-reviews {
  color: #008cfe;
}

.show-less-reviews {
  color: #008cfe;
}

@media (max-width: 480px) {
  .section-review,
  .rating-categories-section {
    padding: 15px;
    margin-top: 60px;
  }

  .user-rating-reviews-title {
    font-size: 20px;
  }

  .overall-score {
    font-size: 40px;
  }

  .overall-text {
    font-size: 16px;
  }

  .overall-counts {
    font-size: 13px;
  }

  .reviews-summary-title {
    font-size: 16px;
  }

  .powered-by {
    font-size: 12px;
  }

  .reviews-summary-text,
  .rating-type,
  .rating-percentage,
  .last-ratings-title,
  .filter-by-label,
  .filter-tag-button,
  .sort-by-label,
  .sort-by-dropdown,
  .review-main-title,
  .review-username,
  .review-text,
  .read-more,
  .guest-details p,
  .category-name,
  .category-score,
  .show-more {
    font-size: 13px;
  }

  .user-rating-badge {
    padding: 3px 6px;
    font-size: 14px;
  }
}

.no-reviews-message p {
  font-size: 12px;
  text-align: center;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.no-reviews-message {
  text-align: center;
  padding: 20px 0;
  color: #777;
  font-size: 1em;
}

.no-reviews-message h2 {
  font-size: 25px;
  color: #333;
  margin-bottom: 10px;
}

.no-reviews-message p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 5px;
}

.review-column-right {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review-column-right::-webkit-scrollbar {
  display: none;
}

.guest-carousel-wrapper {
  padding: 1rem;
  font-family: Arial, sans-serif;
}

.carousel-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.title-underline {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  margin-top: 5px;
  border-radius: 2px;
}

.guest-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.guest-image-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.guest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.guest-image-wrapper:hover .guest-image {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  pointer-events: none;
}

/* Modal Styles */
.guest-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.guest-modal {
  background-color: white;
  padding: 1rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images per row */
  gap: 10px;
  margin-top: 2rem;
}

.modal-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 786px) {
  .guest-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }

  .guest-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
}

.hotel-container {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  /* background: #f2f2f2; */
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #d8dde5;
}

.hotel-carousel {
  margin-bottom: 20px;
}

.carousel-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  padding: 0pc 2px 0px 2px;
}

.carousel-img-bottom {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  padding: 0px 2px 0px 2px;
}

.hotel-amenities {
  height: fit-content;
}

.hotel-carousel-container {
  width: 60%;
  max-height: 600px;
  gap: 20px;
}

.images-layout {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.left-gallery {
  flex: 2;
}

.right-images-grid {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
}

.grid-img-box {
  width: 100%;
  /* padding-bottom: 100%;  */
  position: relative;
  overflow: hidden;
}

.grid-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.hotel-details {
  display: inline;
  width: 38%;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.tag {
  background-color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  border: 1px solid #55103d;
  color: #55103d;
}

.room-info {
  margin: 0;
  color: #697586;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: 0;
  list-style: none;
  padding: 0;
}

.amenities li {
  /* padding: 2px; */
  border-radius: 6px;
  font-size: 12px;
  color: #697586;
  line-height: 18px;
  /* margin: 2px; */
}

.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

small {
  color: #697586;
}

.options-link {
  color: #00296b;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}

.reserve-btn {
  background-color: #00296b;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
}

.reserve-btns {
  background-color: #fff;
  color: #00296b;
  padding: 10px 16px;
  border: 1px solid #00296b;
  border-radius: 100px;
  cursor: pointer;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
}

.btn-flex {
  display: flex;
  justify-content: space-between;
}

.location-rating-box {
  border: 1px solid #d8d8d8;
  border-radius: 24px;
  padding: 16px;
}

.hr-line {
  background-color: #d8d8d8;
  height: 1px;
  width: 100%;
}

.location-box,
.rating-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
}

.location-mapicon {
  display: flex;
  gap: 14px;
}

.rating {
  width: 263px;
  height: 44px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.rating-score {
  font-size: 12px;
  font-weight: bold;
  display: flex;
  color: #fff;
  background-color: #003572;
  width: 56px;
  height: 44px;
  align-items: center;
  border-radius: 12px;
  padding: 4px;
  gap: 2px;
  justify-content: space-evenly;
}

.rating-text {
  font-size: 14px;
  color: #003572;
  font-weight: 700;
}

.room-section2 {
  border: 1px solid #d8d8d8;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 10px;
}

.review-link,
.map-link {
  font-size: 14px;
  font-weight: 600;
  color: #008cfe;
  text-decoration: none;
  margin-left: auto;
  margin-top: 10px;
}

.btn-flexs {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.time-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-icon {
  width: 24px;
  height: 24px;
}

.time-text {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hotel-container {
    display: block;
    margin-top: 10px;
  }

  .hotel-carousel-container {
    width: 100%;
    max-height: 600px;
  }

  .images-layout {
    flex-direction: column;
    height: auto;
  }

  .left-gallery,
  .right-images-grid {
    flex: none;
    width: 100%;
  }

  .reserve-btn {
    font-size: 12px;
  }
  .right-images-grid {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hotel-container {
    display: block;
  }

  .hotel-carousel-container {
    max-width: 100%;
    padding: 10px;
  }

  .room-section2 {
    padding: 10px;
  }

  .price-box {
    display: block;
    margin-bottom: 10px;
  }

  .carousel-img-top {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    padding: 0pc 2px 0px 2px;
  }

  .carousel-img-bottom {
    width: 100%;
    height: 125px;
    object-fit: cover;
    border-radius: 12px;
    padding: 0px 2px 0px 2px;
  }

  .room-header {
    display: block;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }

  .location-box,
  .rating-box {
    display: block;
    padding: 12px;
    height: fit-content;
  }

  .location-box-city {
    font-size: 10px;
  }
}

.room-info span {
  color: #f9ab34;
  font-size: 18px;
}

.roomtype {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roomtype h2 {
  margin: 0;
  font-size: 1.25rem;
}

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

.rating-score {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  gap: 4px;
}

.star-icon {
  height: 16px;
  width: 16px;
}

.hotel-label {
  margin-left: 2px;
}

.location-box {
  padding-bottom: 12px;
}

.image-gallery-icon{color:#fff;transition:all .3s ease-out;appearance:none;background-color:rgba(0,0,0,0);border:0;cursor:pointer;outline:none;position:absolute;z-index:4;filter:drop-shadow(0 2px 2px rgb(25.5, 25.5, 25.5))}@media(hover: hover)and (pointer: fine){.image-gallery-icon:hover{color:#337ab7}.image-gallery-icon:hover .image-gallery-svg{transform:scale(1.1)}}.image-gallery-icon:focus{outline:2px solid #337ab7}.image-gallery-using-mouse .image-gallery-icon:focus{outline:none}.image-gallery-fullscreen-button,.image-gallery-play-button{bottom:0;padding:20px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:28px;width:28px}@media(max-width: 768px){.image-gallery-fullscreen-button,.image-gallery-play-button{padding:15px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:24px;width:24px}}@media(max-width: 480px){.image-gallery-fullscreen-button,.image-gallery-play-button{padding:10px}.image-gallery-fullscreen-button .image-gallery-svg,.image-gallery-play-button .image-gallery-svg{height:16px;width:16px}}.image-gallery-fullscreen-button{right:0}.image-gallery-play-button{left:0}.image-gallery-top-nav,.image-gallery-bottom-nav{padding:10px 10px;left:50%;transform:translateX(-50%)}.image-gallery-top-nav .image-gallery-svg,.image-gallery-bottom-nav .image-gallery-svg{height:120px;width:90px}@media(max-width: 768px){.image-gallery-top-nav .image-gallery-svg,.image-gallery-bottom-nav .image-gallery-svg{height:72px;width:48px}}@media(max-width: 480px){.image-gallery-top-nav .image-gallery-svg,.image-gallery-bottom-nav .image-gallery-svg{height:48px;width:36px}}.image-gallery-top-nav[disabled],.image-gallery-bottom-nav[disabled]{cursor:disabled;opacity:.6;pointer-events:none}.image-gallery-top-nav{top:0}.image-gallery-bottom-nav{bottom:0}.image-gallery-left-nav,.image-gallery-right-nav{padding:50px 10px;top:50%;transform:translateY(-50%)}.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:120px;width:60px}@media(max-width: 768px){.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:72px;width:36px}}@media(max-width: 480px){.image-gallery-left-nav .image-gallery-svg,.image-gallery-right-nav .image-gallery-svg{height:48px;width:24px}}.image-gallery-left-nav[disabled],.image-gallery-right-nav[disabled]{cursor:disabled;opacity:.6;pointer-events:none}.image-gallery-left-nav{left:0}.image-gallery-right-nav{right:0}.image-gallery{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:rgba(0,0,0,0);position:relative}.image-gallery.fullscreen-modal{background:#000;bottom:0;height:100%;left:0;position:fixed;right:0;top:0;width:100%;z-index:5}.image-gallery.fullscreen-modal .image-gallery-content{top:50%;transform:translateY(-50%)}.image-gallery-content{position:relative;line-height:0;top:0}.image-gallery-content.fullscreen{background:#000}.image-gallery-content .image-gallery-slide .image-gallery-image{max-height:calc(100vh - 80px)}.image-gallery-content.image-gallery-thumbnails-left .image-gallery-slide .image-gallery-image,.image-gallery-content.image-gallery-thumbnails-right .image-gallery-slide .image-gallery-image{max-height:100vh}.image-gallery-slide-wrapper{position:relative}.image-gallery-slide-wrapper.image-gallery-thumbnails-left,.image-gallery-slide-wrapper.image-gallery-thumbnails-right{display:inline-block;width:calc(100% - 110px)}@media(max-width: 768px){.image-gallery-slide-wrapper.image-gallery-thumbnails-left,.image-gallery-slide-wrapper.image-gallery-thumbnails-right{width:calc(100% - 87px)}}.image-gallery-slide-wrapper.image-gallery-rtl{direction:rtl}.image-gallery-slides{line-height:0;overflow:hidden;position:relative;white-space:nowrap;text-align:center;touch-action:none}.image-gallery-slide{left:0;position:absolute;top:0;width:100%}.image-gallery-slide.image-gallery-center{position:relative}.image-gallery-slide .image-gallery-image{width:100%;object-fit:contain}.image-gallery-slide .image-gallery-description{background:rgba(0,0,0,.4);bottom:70px;color:#fff;left:0;line-height:1;padding:10px 20px;position:absolute;white-space:normal}@media(max-width: 768px){.image-gallery-slide .image-gallery-description{bottom:45px;font-size:.8em;padding:8px 15px}}.image-gallery-bullets{bottom:20px;left:0;margin:0 auto;position:absolute;right:0;width:80%;z-index:4}.image-gallery-bullets .image-gallery-bullets-container{margin:0;padding:0;text-align:center}.image-gallery-bullets .image-gallery-bullet{appearance:none;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:50%;box-shadow:0 2px 2px hsl(0,0%,10%);cursor:pointer;display:inline-block;margin:0 5px;outline:none;padding:5px;transition:all .2s ease-out}@media(max-width: 768px){.image-gallery-bullets .image-gallery-bullet{margin:0 3px;padding:3px}}@media(max-width: 480px){.image-gallery-bullets .image-gallery-bullet{padding:2.7px}}.image-gallery-bullets .image-gallery-bullet:focus{transform:scale(1.2);background:#337ab7;border:1px solid #337ab7}.image-gallery-bullets .image-gallery-bullet.active{transform:scale(1.2);border:1px solid #fff;background:#fff}@media(hover: hover)and (pointer: fine){.image-gallery-bullets .image-gallery-bullet:hover{background:#337ab7;border:1px solid #337ab7}.image-gallery-bullets .image-gallery-bullet.active:hover{background:#337ab7}}.image-gallery-bullets.image-gallery-bullets-vertical{left:20px;right:auto;bottom:auto;width:auto;top:50%;transform:translateY(-50%)}.image-gallery-bullets.image-gallery-bullets-vertical .image-gallery-bullet{display:block;margin:12px 0}@media(max-width: 768px){.image-gallery-bullets.image-gallery-bullets-vertical .image-gallery-bullet{margin:6px 0px;padding:3px}}@media(max-width: 480px){.image-gallery-bullets.image-gallery-bullets-vertical .image-gallery-bullet{padding:2.7px}}.image-gallery-thumbnails-wrapper{position:relative}.image-gallery-thumbnails-wrapper.thumbnails-swipe-horizontal{touch-action:pan-y}.image-gallery-thumbnails-wrapper.thumbnails-swipe-vertical{touch-action:pan-x}.image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl{direction:rtl}.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right{display:inline-block;vertical-align:top;width:100px}@media(max-width: 768px){.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right{width:81px}}.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails,.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails{height:100%;width:100%;left:0;padding:0;position:absolute;top:0}.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail{display:block;margin-right:0;padding:0}.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail,.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:0;margin-top:2px}.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right{margin:0 5px}@media(max-width: 768px){.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right{margin:0 3px}}.image-gallery-thumbnails{overflow:hidden;padding:5px 0}@media(max-width: 768px){.image-gallery-thumbnails{padding:3px 0}}.image-gallery-thumbnails .image-gallery-thumbnails-container{cursor:pointer;text-align:center;white-space:nowrap}.image-gallery-thumbnail{display:inline-block;border:4px solid rgba(0,0,0,0);transition:border .3s ease-out;width:100px;background:rgba(0,0,0,0);padding:0}@media(max-width: 768px){.image-gallery-thumbnail{border:3px solid rgba(0,0,0,0);width:81px}}.image-gallery-thumbnail+.image-gallery-thumbnail{margin-left:2px}.image-gallery-thumbnail .image-gallery-thumbnail-inner{display:block;position:relative}.image-gallery-thumbnail .image-gallery-thumbnail-image{vertical-align:middle;width:100%;line-height:0}.image-gallery-thumbnail.active,.image-gallery-thumbnail:focus{outline:none;border:4px solid #337ab7}@media(max-width: 768px){.image-gallery-thumbnail.active,.image-gallery-thumbnail:focus{border:3px solid #337ab7}}@media(hover: hover)and (pointer: fine){.image-gallery-thumbnail:hover{outline:none;border:4px solid #337ab7}}@media(hover: hover)and (pointer: fine)and (max-width: 768px){.image-gallery-thumbnail:hover{border:3px solid #337ab7}}.image-gallery-thumbnail-label{box-sizing:border-box;color:#fff;font-size:1em;left:0;line-height:1em;padding:5%;position:absolute;top:50%;text-shadow:0 2px 2px hsl(0,0%,10%);transform:translateY(-50%);white-space:normal;width:100%}@media(max-width: 768px){.image-gallery-thumbnail-label{font-size:.8em;line-height:.8em}}.image-gallery-index{background:rgba(0,0,0,.4);color:#fff;line-height:1;padding:10px 20px;position:absolute;right:0;top:0;z-index:4}@media(max-width: 768px){.image-gallery-index{font-size:.8em;padding:5px 10px}}

.custom-gallery-wrapper .image-gallery-slide img {
  width: 100%; /* fixed width */
  height: 320px; /* fixed height */
  object-fit: fill; /* important: keeps aspect ratio clean */
  border-radius: 10px; /* optional, smooth corners */
}

.custom-gallery-wrapper .image-gallery-thumbnail img {
  width: 92px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}

.image-gallery-left-nav .image-gallery-svg,
.image-gallery-right-nav .image-gallery-svg {
  height: 45px;
  width: 60px;
}

.custom-gallery-wrapper.fullscreen-mode .image-gallery-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  border-radius: 0;
}

.amenities-container {
  padding: 20px;
  border-radius: 24px;
  text-align: left;
}

.title {
  margin-bottom: 12px;
  font-weight: bold;
  color: #222;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenities-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: white;
  padding: 0px 20px;
  border-radius: 10px;
  width: 80%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.amenity-chip {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #979595;
  background-color: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  height: fit-content;
}

.more-amenities {
  display: inline-block;
  margin-top: 10px;
  color: #008cfe;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  align-self: center;
  padding: 6px 12px;
}

.all-amenities-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
}

/* Updated layout for 3 per row */
.all-amenities-list-popup {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
}

/* 3 per row item style */
.amenities-circle-check {
  display: flex;
  align-items: center;
  flex: 1 1 calc(33.33% - 24px);
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 12px;
  box-sizing: border-box;
}

/* Icon + amenity name */
.amenity-chip-popup {
  margin-left: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* Optional heading styling */
.popup-content-heading {
  position: sticky;
  top: 0px;
  background-color: #fff;
  padding-top: 20px;
  padding-left: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .amenities-circle-check {
    flex: 1 1 calc(50% - 24px); /* 2 per row on tablet */
  }
}

@media (max-width: 480px) {
  .amenities-container {
    width: 100%;
    padding: 0;
  }
  .amenities-circle-check {
    flex: 1 1 100%; /* 1 per row on mobile */
  }
}

.update-search-details {
  width: 100%;
  /* background-color: #f2f2f2; */
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #d8dde5;
}

.check-in-box {
  display: flex;
  gap: 8px;
  line-height: 22px;
  color: #697586;
}
.check-in {
  font-size: 14px;
  font-weight: 600;
}
.time {
  font-weight: 400;
}

.check-out-text {
  font-size: 14px;
  font-weight: 600;
}
.update-search-panel {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 480px) {
  .update-search-details {
    width: 100%;
  }

  .update-search-panel {
    display: block;
  }
  .date-button {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .update-search-panel {
    display: block;
    width: 100%;
  }
  .date-button {
    margin-bottom: 10px;
    width: 100%;
  }

  .update-search-details {
    width: 100%;
  }
}

.thumbnail-images {
  display: flex;
  flex-wrap: wrap;
}

.thumbnail-images img {
  width: 50%;
  object-fit: cover;
  height: 100px;
}

.room-carousel {
  display: block;
  gap: 4px;
  margin-bottom: 12px;
}
.room-gallary-section {
  width: 35%;
  padding: 16px;
  box-sizing: border-box;
  position: sticky;
  top: 100px;
  align-self: stretch; /* important: stretch to match sibling height */
  height: 100%;
  z-index: 1;
}

.room-gallary-section h2 {
  /* padding-left: 20px; */
  color: #003572;
}

.select-room {
  text-align: left;
  margin-top: 20px;
}
h3 {
  color: #003572;
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
}
.room-header {
  font-weight: 700;
  height: fit-content;
  font-size: 14px;
}

.carousel-img {
  height: 168px;
  width: 198px;
  border-radius: 4px;
  object-fit: cover;
  display: flex;
}

.room-carousel-container {
  max-width: 100%;
  max-height: 100%;
  padding: 16px;
  gap: 20px;

  border-top: 1px solid #d8dde5;
}
.room-carousel-container:first-child {
  border-top: none;
}
.room-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 55%;
  border-left: 1px solid #d8dde5;
  /* grid-template-columns: repeat(2, 50%); */
}

.room-group {
  margin: 12px 0 0;
  display: flex;
  border: 1px solid #d8dde5;
  border-radius: 8px;
  overflow: visible; /* important: allow sticky to work */
  align-items: flex-start;
  position: relative;
  align-items: stretch;
  background-color: #fff;
}

.room-type-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.room-type-title {
  font-size: 20px;
  color: #444;
  background-color: #f5f5f5;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  user-select: none;
}

.room-type-title:hover {
  background-color: #eaeaea;
}
.show-more-btn {
  background-color: transparent;
  color: #00296b;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
}
.rc-dropdown label {
  font-size: 18px;
  font-weight: 700;
}
.rc-dropdown select {
  width: fit-content;
  height: 28px;
  font-size: 18px;
  padding: 4px 2px;
  border: none;
}
.room-amenities-section {
  /* padding: 10px; */
  /* background-color: #f9f9f9; */
  border-radius: 8px;
  /* margin-bottom: 10px; */
}

.amenities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
  font-size: 0.9rem;
  color: #333;
}

.benefit-icon {
  margin-right: 8px;
  color: #007bff;
}

.amenity-item span {
  line-height: 1.5;
}

.view-toggle {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 0.9rem;
}
.price-highlight {
  font-size: 14px;
  font-weight: 900;
  margin-top: 4px;
}

.policy-note {
  font-size: 0.8rem;
  color: #007bff;
  margin-bottom: 0.4rem;
  text-decoration: none;
}

.policy-bar {
  margin-top: 0.8rem;
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
}

.policy-segments {
  display: flex;
  margin-top: 0.4rem;
  height: 1px;
}

.segment {
  flex: 1;
  padding: 0.25rem;
  text-align: center;
  border-radius: 4px;
  font-weight: 500;
}

.segment-refund {
  background: #249995;
  color: #000;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.segment-nonrefundable {
  background: #fff;
  color: #fff;
  border: 1px solid #dfdfdf;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.segment-nonrefundable.active {
  background: #cd9100;
  color: #000;
  border: none;
}

.policy-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: #555;
}

.timeline-label {
  font-weight: 600;
}

.timeline-time {
  font-style: italic;
}

.policy-penalty {
  font-size: 0.7rem;
  margin-top: 0.3rem;
  color: #333;
}

.policy-nonrefundable {
  display: flex;
  align-items: center;
  color: #cd9100;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.icon {
  margin-right: 6px;
  color: inherit;
}

@media (max-width: 480px) {
  .room-list {
    display: block;
  }
  .room-carousel-container {
    max-height: fit-content;
  }

  .carousel-img {
    height: 120px;
    width: 130px;
    border-radius: 4px;
    object-fit: cover;
  }
  .room-gallary-section {
    padding: 5px;
    position: relative;
    margin-bottom: 25px;
    top: 0;
  }
}

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

  .room-gallary-section,
  .room-list {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d8dde5;
  }
  .room-gallary-section {
    position: relative;
    margin-bottom: 25px;
    top: 0;
  }

  .room-list {
    border-bottom: none;
    border-left: none;
  }
  .segment-nonrefundable.active,
  .segment-refund {
    color: #fafafa;
  }
}

.cancellation-policys {
  width: 100%;
  max-width: 800px;
  margin: 15px auto;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
}

.cancellation-header {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.cancellation-header-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cancellation-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.cancellation-id {
  font-size: 14px;
  color: #6b7280;
  margin: 4px 0 0 0;
}

.cancellation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}

.badge-refundable {
  background-color: #dcfce7;
  color: #166534;
}

.badge-non-refundable {
  background-color: #fee2e2;
  color: #b91c1c;
}

.badge-partial {
  background-color: #fef3c7;
  color: #92400e;
}

.badge-outline {
  background-color: transparent;
  border: 1px solid #d1d5db;
  color: #4b5563;
}

.cancellation-content {
  padding: 20px;
}

.free-cancellation {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.free-cancellation-inner {
  display: flex;
  gap: 12px;
}

.free-cancellation-icon {
  color: #16a34a;
  flex-shrink: 0;
}

.free-cancellation-text h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #166534;
}

.free-cancellation-text p {
  margin: 0;
  font-size: 14px;
  color: #166534;
}

.penalties-section {
  margin-bottom: 24px;
}

.penalties-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.penalties-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.penalties-icon {
  color: #d97706;
}

.penalties-list {
  display: grid;
  gap: 16px;
}

.penalty-card {
  border: 1px solid #e5e7eb;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 16px;
}

.penalty-period {
  margin-bottom: 12px;
}

.period-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
}

.period-dates {
  font-size: 14px;
  color: #6b7280;
}

.period-dates strong {
  font-weight: 500;
  color: #4b5563;
}

.penalty-details {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.penalty-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
}

.penalty-amount {
  background-color: #fef2f2;
}

.penalty-percentage {
  background-color: #fff7ed;
}

.penalty-nights {
  background-color: #eff6ff;
}

.penalty-icon {
  width: 20px;
  height: 20px;
}

.penalty-amount .penalty-icon {
  color: #dc2626;
}

.penalty-percentage .penalty-icon {
  color: #ea580c;
}

.penalty-nights .penalty-icon {
  color: #2563eb;
}

.penalty-info {
  flex: 1;
}

.penalty-label {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 2px 0;
}

.penalty-amount .penalty-label {
  color: #991b1b;
}

.penalty-percentage .penalty-label {
  color: #9a3412;
}

.penalty-nights .penalty-label {
  color: #1e40af;
}

.penalty-value {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.penalty-amount .penalty-value {
  color: #dc2626;
}

.penalty-percentage .penalty-value {
  color: #ea580c;
}

.penalty-nights .penalty-value {
  color: #2563eb;
}

.no-penalty {
  font-size: 14px;
  color: #16a34a;
  font-weight: 500;
}

.important-notes {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 16px;
}

.important-notes h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1e40af;
}

.important-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.important-notes li {
  font-size: 14px;
  color: #1e40af;
  margin-bottom: 4px;
}

/* Icons */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* Responsive styles */
@media (min-width: 640px) {
  .cancellation-header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .penalty-details {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.about-property {
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
}

.title h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.tab-button.active {
  border-bottom: 1px solid #00296b;
}

.tab-content {
  background-color: #fafafa;
  padding: 16px;
  border-radius: 6px;
  /* box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); */
}

.cancellation-policy {
  margin: 20px 0;
  border-radius: 8px;
  border: 1px solid #d8dde5;
}

.cancellation-policy table {
  width: 100%;
  border-collapse: collapse;
}

.cancellation-policy th,
.cancellation-policy td {
  padding: 8px;
  text-align: left;
}

.cancellation-policy-title {
  padding: 20px;
}

.cancellation-policy p {
  padding-left: 24px;
}
.policy-table {
  padding-left: 24px;
}

.nearby-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  font-family: Arial, sans-serif;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.map-box {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.landmarks-section {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.sidebar {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.05);
}

.sidebar-item {
  padding: 10px 16px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  color: #333;
  border-left: 4px solid transparent;
}

.sidebar-item:hover {
  background-color: #e0e0f0;
}

.sidebar-item.active {
  background-color: white;
  font-weight: bold;
  border-left: 4px solid #007aff;
}

.landmark-list {
  flex: 1;
  background-color: white;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}
.landmark-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.landmark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.landmark:last-child {
  border-bottom: none;
}

.landmark-left {
  display: flex;
  align-items: center;
}

.landmark-info {
  display: flex;
  flex-direction: column;
}

.landmark-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.landmark-type {
  font-size: 12px;
  color: #666;
}

.landmark-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #007aff;
  font-size: 13px;
}

.view-all {
  text-align: left;
  font-weight: bold;
  color: #007aff;
  padding: 12px 0 8px 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nearby-container {
    margin-top: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .nearby-container {
    /* margin-top: 85px; */
  }
}

.payment-page {
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-row {
  display: block;
  width: 100%;
  gap: 1.5rem;

  flex-wrap: nowrap;
}

.hotelcard-pricebreakup {
  display: flex;
  gap: 8px;
}

.user-hotel-div {
  flex: 1;
  background: #fff;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.price-breakup {
  flex: 0 0 320px;
  border: 1px solid #d8dde5;

  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
  margin-top: 0;
  /* height: 218px; */
  width: 300px;
}

.user-hotel h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0;
}

.user-hotel p {
  font-size: 0.75rem;
  color: #697586;
  margin: 0.5rem 0;
}

.payment-page-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 1rem;
  margin-top: 60px;
  text-align: start;
}

.guest-list-container {
  /* background-color: #f2f2f2; */
  border: 1px solid #d8dde5;

  border-radius: 0.75rem;
  padding: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.guest-card {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.guest-card:last-child {
  border-bottom: none;
}

.primary-guest-card {
  position: relative;
}

.guest-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.guest-label {
  color: #00296b;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.guest-name {
  color: #1e1e1e;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.guest-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: #555;
}

.guest-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.guest-contact-item .fa-envelope {
  color: #007bff;
}

.guest-contact-item .fa-phone {
  color: #28a745;
}

.dropdown-toggle-icon {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: black;
  margin-top: -8px;
  /* Move up slightly */
}

.dropdown-toggle-icon.open {
  transform: rotate(180deg);
}

.width-hard-code {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: block;
}

.payment-continue {
  width: 100%;
  max-width: 200px;
  height: 50px;
  border-radius: 50px;
  background-color: #00296b;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin: 1.5rem auto;
}

.payment-continue:hover {
  background-color: #004080;
}

.price-breakup-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e1e1e;
  text-align: start;
}

.price-breakup-p {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: #1e1e1e;
}

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 1rem 0;
}

.error-message {
  color: red;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
  }

  .price-breakup {
    flex: 1;
    width: 100%;
    margin-top: 1rem;
    flex-direction: column;
  }

  .payment-page {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }

  .payment-page-heading {
    font-size: 1.25rem;
  }

  .payment-continue {
    max-width: 160px;
    height: 40px;
  }
}

/* Tablets (768px - 1023px) */
@media (min-width: 320px) and (max-width: 1023px) {
  .payment-page {
    /* max-width: 720px; */
  }

  .payment-continue {
    max-width: 180px;
  }

  .hotelcard-pricebreakup {
    /* flex: 1;
    flex-direction: row; */
    display: block;
  }
}

/* Desktops (1024px and above) */
@media (max-width: 1024px) {
  .payment-page-heading {
    font-size: 1.75rem;
  }
}

/* Container for the entire hotel booking section */
.user-hotel-container {
  display: flex;
  flex-direction: column;
  /* background: #f2f2f2; */
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  gap: 1rem;
  border: 1px solid #d8dde5;
}

/* Wrapper for hotel dates */
.user-hotel-dates-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Main content section */
.user-hotel-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0.5rem;
}

/* Main section containing image and details */
.user-hotel-main-section {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* Textual details */
.user-hotel-text-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

/* Image container */
.user-hotel-image-container {
  flex-shrink: 0;
  width: 100%;
  height: 6rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.user-hotel-image-container img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

/* Header section */
.user-hotel-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.user-hotel-header h4 {
  color: #003087;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.user-hotel-header p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Rating section */
.room-info-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #f9ab34;
  font-size: 1.2rem;
}

/* Hotel information */
.user-hotel-info h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.user-hotel-info p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0.25rem 0;
}

/* Dates section */
.user-hotel-dates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #e5e7eb;
  background-color: #fafafa;
  box-sizing: border-box;
  gap: 1rem;
}

/* Check-in and Check-out section */
.check-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.check-in,
.check-out {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: #374151;
}

.label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.check-in p,
.check-out p {
  margin: 0;
}

.time {
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: #111827;
}

/* Night badge */
.night-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #003087;
  border: 1px solid #93c5fd;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  background-color: #f0f9ff;
  text-align: center;
  white-space: nowrap;
}

/* Guest summary */
.guest-summary {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #111827;
  white-space: nowrap;
  padding-left: 1.5rem;
  /* margin-left: 4rem; */
}

.guest-summary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #e5e7eb;
}

/* Details and image section */
.details-image {
  display: flex;
  justify-content: space-between;
}

/* Responsive Styles */

/* Mobile styles (≤768px) - stacked column */
@media (max-width: 767px) {
  .user-hotel-container {
    padding: 1rem;
    gap: 0.75rem;
  }

  .user-hotel-main-section {
    flex-direction: column;
    gap: 1rem;
  }

  .details-image {
    display: block;
    justify-content: space-between;
  }

  .user-hotel-content {
    padding-left: 0;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
  }

  .user-hotel-dates {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
  }

  .guest-summary {
    margin-left: 0;
    padding-left: 0;
    margin-top: 1rem;
    border-left: none;
  }

  .guest-summary::before {
    display: none;
  }

  .night-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .label {
    font-size: 0.85rem;
  }

  .time {
    font-size: 0.85rem;
  }
}
.room-type-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #e6f0ff;
  border: 1px solid #cce0ff;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  box-sizing: border-box;
}

/* Room type header */
.room-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.room-type span:first-child {
  font-weight: 600;
  color: #003087;
  font-size: 1rem;
}

.room-size {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Room amenities */
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  /* gap: 1.5rem; */
  margin-top: 0.5rem;
}

.amenity-item {
  flex: 0 0 calc(33.333% - 1rem); /* 3 items per row with gap adjustment */
  display: flex;
  align-items: center;
}

.amenity-check {
  margin-right: 0.5rem;
  color: green; /* Optional: style the checkmark */
}

/* Tablet & Desktop (769px to 1440px) - flex row with image and details side by side */
@media (max-width: 1024) {
  .user-hotel-container {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .user-hotel-main-section {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .user-hotel-image-container {
    width: 250px;
    height: 8rem;
    max-width: 250px;
    border-radius: 0.5rem;
  }

  .user-hotel-content {
    padding-left: 0.5rem;
    gap: 0.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .user-hotel-dates {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background-color: #fafafa;
  }
}

/* Tablet & Desktop (769px to 1440px) - flex row with image and details side by side */
@media (max-width: 1440) {
  .user-hotel-container {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .user-hotel-main-section {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  .user-hotel-image-container {
    width: 250px;
    height: 8rem;
    max-width: 250px;
    border-radius: 0.5rem;
  }

  .user-hotel-content {
    padding-left: 0.5rem;
    gap: 0.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .user-hotel-dates {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    border: 1px solid #e5e7eb;
    background-color: #fafafa;
  }
}
@media (max-width: 767px) {
  .room-type-section {
    padding: 0.75rem 1rem;
  }

  .room-type {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .room-amenities {
    margin-top: 0.75rem;
    gap: 1rem;
  }
}

/* Fullscreen overlay */
.facilities-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
}

/* Popup box */
.all-facilities-container {
  background: #fff;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  /* padding: 20px; */
  position: relative;
  padding-left: 20px;
}

/* Sticky header */
.all-facilities-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.all-fac-heading {
  margin: 3px 0 0 30px;
}
.close-btn {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

.all-facilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
}

.facility-item {
  display: flex;
  align-items: center;
  flex: 0 0 calc(33.333% - 12px);
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.2s;
}

.facility-item:hover {
  background: #e6f0ff;
}

.facility-name {
  margin-left: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  .facility-item {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .facility-item {
    flex: 0 0 100%;
  }
}

/* Fullscreen gradient background */
.no-room-details-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f2f2f2; */
  padding: 2rem;
  overflow: hidden;
}

/* Card-style content with glassmorphism effect */
.no-room-details-content {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  animation: fadeIn 0.8s ease-out forwards;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .no-room-details-content {
    flex-direction: row;
  }
}

/* Image Section */
.no-room-details-image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .no-room-details-image-section {
    margin-bottom: 0;
  }
}

.no-room-details-image {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.no-room-details-image:hover {
  transform: scale(1.03);
}

/* Text Section */
.no-room-details-text-section {
  flex: 1;
  color: #f9fafb;
  text-align: center;
  padding: 1rem;
}

@media (min-width: 768px) {
  .no-room-details-text-section {
    text-align: left;
  }
}

.no-room-details-title {
  font-size: 2.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .no-room-details-title {
    justify-content: flex-start;
  }
}

.sad-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #facc15;
}

/* Message text */
.no-room-details-message {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #e0e7ff;
}

/* Call-to-action Button */
.no-room-details-button {
  background: linear-gradient(to right, #2563eb, #1e40af);
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.no-room-details-button:hover {
  background: linear-gradient(to right, #1e40af, #2563eb);
  transform: translateY(-2px);
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.property-instructions {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.instructions-header {
  margin-bottom: 24px;
}

.instructions-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.instructions-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.instructions-list {
  display: grid;
  gap: 20px;
}

.instruction-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.instruction-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 12px;
}

.instruction-type {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.instruction-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.policies-header {
  background-color: #fef3c7;
  border-bottom-color: #f59e0b;
}

.policies-header .instruction-icon {
  color: #d97706;
}

.checkin-header {
  background-color: #dbeafe;
  border-bottom-color: #3b82f6;
}

.checkin-header .instruction-icon {
  color: #2563eb;
}

.fees-header {
  background-color: #dcfce7;
  border-bottom-color: #16a34a;
}

.fees-header .instruction-icon {
  color: #16a34a;
}

.instruction-content {
  padding: 20px;
}

.instruction-item {
  margin-bottom: 16px;
}

.instruction-item:last-child {
  margin-bottom: 0;
}

.instruction-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 6px 0;
}

.instruction-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  white-space: pre-line;
}

.no-instructions {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
  font-style: italic;
}

.error-message {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 12px;
  color: #b91c1c;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Responsive styles */
@media (max-width: 640px) {
  .property-instructions {
    margin: 0 16px;
  }

  .instruction-header {
    padding: 12px 16px;
  }

  .instruction-content {
    padding: 16px;
  }

  .instructions-title {
    font-size: 20px;
  }
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.select-guest__title {
  margin-right: 300px;
}
/* .select-guest__container {
  overflow: auto;               
  scrollbar-width: none;        
  -ms-overflow-style: none;     
}

.select-guest__container::-webkit-scrollbar {
  display: none;               
} */

.select-guest__note {
  font-size: 12px;
  margin-right: 10px;
}
.select-guest__subtitle {
  margin-right: 300px;
}
.select-guest {
  /* line-height: 30px; */
  background-color: #f2f2f2;
  /* width: 480px; */
  /* height: fit-content; */
  /* height: 300px; */
  padding: 10px;
  text-align: start !important;
}
.selected-guest_summary {
  line-height: 30px;
  background-color: #fff;
  width: 480px;
  /* height: fit-content; */
  /* height: 300px; */
  padding: 20px;
  text-align: start !important;
}
.saved-guests-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
}
.addEditScrollSection {
  /* height: 300px; */
  /* overflow-y: scroll; */
}
.saved-guests-header .select-guest__button--save1 {
  border: none;
  color: rgb(31, 90, 230);
  background-color: white;
  font-size: 15px;
  cursor: pointer;
  margin-left: auto;
}
.checkbox-error {
  color: red;
  font-size: 14px;
  text-align: start;
}
.select-guest__button--save2 {
  background-color: lightgreen;
  color: white;
  border-radius: 5px;
  padding: 15px 70px;
  border: none;
}
.select-guest-button_summary {
  align-items: center;
  background-color: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 0 4px 0 #00000080;
  display: flex;
  height: 90px;
  justify-content: center;
  margin: -40px -40px;
  margin-top: 20px;
}
.select-guest__button--save2:disabled {
  background-color: #c0bebe;
}
/* 
.select-guest__dropdown {
  padding: 12px 15px;
  border-radius: 8px;
  border-width: 1px;
  margin-left: 10px;
  border: 1px solid #ffffff;
} */
.guest-form__input,
.guest-form__select {
  padding: 12px 15px;
  border-radius: 8px;
  margin-top: 10px;
  margin-left: 10px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  gap: 5px;
}
.guest-form__input-row {
  display: flex;
  margin-left: -10px;
}
.select-guest_email,
.select-guest_pan {
  width: 40%;
}
.select-guest_firstName,
.select-guest_secondName {
  width: 31%;
}
.select-guest_phoneNumber {
  width: 71%;
}
.select-guest_gstNumber,
.select-guest_companyName,
.select-guest_companyAddress {
  width: 40%;
}
.guest-form__checkbox-label {
  font-size: 13px;
  margin-left: 5px;
}
.guest-form__checkbox-container {
  margin-top: 10px;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.guest-form__checkbox {
  width: 18px;
  height: 18px;
}
.guest-form__save-button {
  width: 50%;
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  border: 1px solid#00296B;
  background-color: #00296b;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.select-guest__button--done {
  width: 40%;
  padding: 10px 20px;
  border-radius: 100px;
  margin-left: 20px;
  background-color: #00296b;
  color: white;
}
.select-guest__button--done:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}
.guest-form__button-group {
  margin-top: 10px;
  /* margin-left: 30px; */
}
.saved-details-entry {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
}
.additional-guests {
  margin-top: 10px;
}
.saved-details__info {
  display: flex;
}
.saved-details__edit {
  color: rgb(31, 90, 230);
}
.guest-form__error {
  color: red;
  font-size: 13px;
  padding-left: 40px;
}
.guest-form__edit-msg {
  color: red;
  margin-top: 8px;
  font-size: 0.9rem;
  padding-left: 50px;
}
.age-error {
  color: red;
  font-size: 14px;
  text-align: start;
}
.guest-item {
  width: 400px;
  margin: auto;
}

@media (max-width: 374px) {
  .select-guest {
    width: fit-content;
    height: fit-content;
  }
  .guest-form__input-row {
    flex-direction: column;
    width: 100%;
  }
  .select-guest-button_summary {
    margin: -22px -22px;
    margin-top: 50px;
  }
  .saved-details-entry {
    width: 250px;
    margin-left: 15px;
  }
  .select-guest__title {
    margin-left: 0px;
    margin-top: 5px;
    margin-right: 150px;
  }
  .select-guest__subtitle {
    margin-right: 120px;
  }

  .select-guest__input {
    margin-top: 10px;
  }
  .guest-form__save-button {
    margin-left: -10px;
    width: auto;
  }

  .select-guest__input {
    display: block;
    width: 90%;
    margin-left: 0;
    margin-top: 10px;
  }
  .guest-form__error {
    color: red;
    font-size: 13px;
    padding-left: 0;
  }
  .select-guest__dropdown {
    width: 100%;
  }
}
@media (min-width: 375px) and (max-width: 424px) {
  .select-guest {
    width: fit-content;
    height: auto;
  }
  .select-guest-button_summary {
    margin: -22px -22px;
    margin-top: 50px;
  }
  .guest-form__input-row {
    flex-direction: column;
  }
  .select-guest__title {
    margin-right: 180px;
    margin-top: 5px;
  }
  .select-guest__subtitle {
    margin-right: 120px;
  }

  .guest-form__save-button {
    width: 80%;
  }

  .select-guest__button--done {
    width: 40%;
  }

  .select-guest__input {
    display: block;
    width: 80%;
    margin-left: 15px;
    margin-top: 10px;
  }
  .select-guest__buttons {
    margin-left: 0px;
  }
  .guest-form__error {
    color: red;
    font-size: 13px;
    padding-left: 0px;
  }
}

@media (min-width: 425px) and (max-width: 600px) {
  .select-guest {
    width: fit-content;
    height: auto;
  }
  .select-guest-button_summary {
    margin: -22px -22px;
    margin-top: 50px;
  }
  .guest-form__input-row {
    flex-direction: column;
  }

  .select-guest__title {
    margin-right: 210px;
    margin-top: 5px;
  }
  .select-guest__subtitle {
    margin-right: 120px;
  }
  .select-guest__input {
    margin-top: 10px;
    width: 90%;
  }
  .select-guest__dropdown {
    width: 98%;
    margin-top: 10px;
    margin-left: 0;
  }
  .guest-form__save-button {
    width: 70%;
  }

  .select-guest__button--done {
    width: 40%;
  }

  .select-guest__input {
    display: block;
    width: 90%;
    margin-left: 0;
    margin-top: 10px;
  }
  .guest-form__error {
    color: red;
    font-size: 13px;
    padding-left: 0px;
  }
}

/* Reset default margins and paddings */

/* Main container */
.confirm-booking_container {
  /* padding: 2rem 1rem; */
  /* max-width: 1400px; */
  /* margin: 0 auto; */
  background-color: #fff;
}

/* Back Title
.back-section-t {
  margin-top: 4.5rem;
} */

.back-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-left: 1rem;
  padding-top: 1rem;
  /* background-color: #f2f2f2; */
}

.back-icon {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 0.75rem;
  cursor: pointer;
}

.confirm-title {
  color: #1e1e1e;
  font-size: clamp(1.5rem, 5vw, 1.75rem);
  font-weight: 600;
}

/* Radisions Layout */
.radisions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  background-color: #fff;
}

.guest-input-first-name,
.guest-input-second-name {
  /* width: 247px; */
}

.guest-input-second-name {
  width: 275px;
}
.guest-input-email {
  width: 250px;
}

/* Room Details */
.room-details {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: 100%;
}
/* .buttons-paylater {
  background-color: red;
} */
.room-details__heading {
  color: #00296b;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.room-details__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.room-details__info {
  font-size: 0.875rem;
  color: #697586;
  margin: 0.75rem 0;
}

.room-details__features {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: #697586;
  line-height: 1.5;
}

.room-details__features li {
  margin-bottom: 0.25rem;
}

/* Guest Details */
.guest-details {
  /* background: #f2f2f2; */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: 100%;
  border: 1px solid #d8dde5;
}

.guest-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.guest-input-mobile {
  width: 200px;
}

.guest-details-row1,
.phone-input-containers {
  display: flex;
  flex-wrap: wrap;
  /* gap: 1rem; */
  margin-bottom: 1rem;
}

.guest-input,
.guest-input-country-codes,
.gst-number {
  padding: 0.625rem;
  /* border-radius: 0.5rem; */
  border: 1px solid #ccc;
  font-size: 0.875rem;
  background-color: #fff;
  flex: 1;
  min-width: 50px;
}

.guest-input-first-name,
.guest-input-second-name,
.guest-input-email,
.guest-input-mobile,
.guest-input-pannn {
  flex: 1;
  min-width: 200px;
}

.guest-details__checkbox {
  display: flex;
  align-items: center;
  margin: 0.75rem 0;
  font-size: 0.875rem;
  color: #1e1e1e;
}

.guest-details__checkbox input {
  margin-right: 0.5rem;
}

.guest-details__add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #00296b;
  color: white;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: background-color 0.15s ease-in-out;
  /* font-size: 1.125rem; */
}

.input-gst {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

/* Important Info */
.important-info {
  /* background: #f2f2f2; */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: 100%;
  border: 1px solid #d8dde5;
}

.important-info h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e1e1e;
}

.important-info ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 0.625rem;
}

.important-info ul li {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #444;
}

.view-all {
  color: #003572;
  font-size: 0.875rem;
  cursor: pointer;
}

/* Special Requests */
.special-requests-container {
  /* background: #f2f2f2; */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: 100%;
  border: 1px solid #d8dde5;
}

.special-requests-container h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.5rem;
  color: #333;
}

.time-input {
  border: 1px solid #ccc;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.text-area {
  margin-top: 1rem;
}

.text-area label {
  font-size: 0.875rem;
  color: #333;
}

.text-area textarea {
  width: 100%;
  padding: 0.625rem;
  font-size: 0.875rem;
  margin-top: 0.375rem;
  resize: vertical;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

/* Agreement Box */
.agreement-box {
  /* margin: 1.5rem 0; */
  width: 100%;
  /* max-width: 600px; */
  /* margin-left: 1rem; */
}

.agreement-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #697586;
  /* display: flex; */
  align-items: center;
}

.agreement-text input {
  margin-right: 0.5rem;
}

.agreement-text span {
  color: #003572;
  font-weight: 500;
}

.proceed-button {
  background-color: #003572;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.9375rem;
  margin-top: 1rem;
  display: block;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.proceed-button:hover {
  background-color: #004080;
  transition: background-color 0.3s ease;
}

.errorss {
  color: red;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Price and Coupon Section */
.price-coupon-section {
  width: 100%;
  /* max-width: 400px; */
  /* padding: 1rem 0; */
}

.price-breakups {
  /* background: #f2f2f2; */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.1rem;
  /* height: 256px; */
  border: 1px solid #d8dde5;
}

.price-breakups h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: #1e1e1e;
}

.price-breakups .row,
.price-breakups .total {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
  font-size: 0.875rem;
}

.price-breakups .row span:last-child {
  color: #00296b;
  font-weight: bold;
}

.price-breakups .row span:first-child {
  color: #697586;
}

.price-breakups .total {
  font-weight: bold;
  font-size: 1rem;
  color: #002f6c;
}

.price-breakups .total strong:first-child {
  color: #1e1e1e;
}

.price-breakups hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 0.5rem 0;
}

.coupon-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-top: 1rem;
}

.coupon-section h3 {
  margin-bottom: 0.75rem;
  color: #1e1e1e;
  font-size: 1.125rem;
}

.coupon-input-wrapper {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.coupon-input-wrapper input {
  padding: 0.625rem;
  border-radius: 0.75rem;
  border: 1px solid #ddd;
  flex: 1;
  font-size: 0.875rem;
  min-width: 150px;
}

.apply-btn {
  background-color: #ccc;
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.apply-btn:hover {
  background-color: #b0b0b0;
  transition: background-color 0.3s ease;
}

.applied-coupon {
  border: 1px solid #0056b3;
  background-color: #e8f1ff;
  border-radius: 0.75rem;
  padding: 0.9375rem;
}

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

.coupon-tag {
  font-weight: bold;
  color: #003572;
  font-size: 0.875rem;
}

.remove-btn {
  background: none;
  border: none;
  color: #003572;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
}

.coupon-message {
  font-size: 0.75rem;
  color: #555;
}

.dropdown-group {
  margin-bottom: 1.5rem;
}

.dropdown-group label {
  font-size: 0.875rem;
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.react-select__control {
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  min-height: 40px;
  background-color: #fff;
  font-size: 0.875rem;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.react-select__control--is-focused {
  border-color: #003572;
  box-shadow: 0 0 5px rgba(0, 53, 114, 0.2);
}

.react-select__menu {
  z-index: 1000;
  border-radius: 0.5rem;
  overflow: hidden;
}

.react-select__option {
  font-size: 0.875rem;
  color: #333;
}

.react-select__option--is-focused {
  background-color: #e8f1ff;
}

.react-select__option--is-selected {
  background-color: #003572;
  color: #fff;
}

.react-select__multi-value {
  background-color: #e0f7fa;
  border-radius: 4px;
  margin: 2px;
}

.react-select__multi-value__label {
  color: #00796b;
  font-size: 0.75rem;
  padding: 2px 4px;
}

.react-select__multi-value__remove {
  cursor: pointer;
  color: #d32f2f;
  padding: 2px 4px;
}

.react-select__multi-value__remove:hover {
  color: #b71c1c;
}

.selected-requests {
  margin: 0.75rem 0;
}

.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.request-box {
  display: inline-flex;
  align-items: center;
  background-color: #e0f7fa;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #00796b;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.remove-request {
  margin-left: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #d32f2f;
  font-size: 1rem;
}

.remove-request:hover {
  color: #b71c1c;
}

.policies-container {
  /* background: #f2f2f2; */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: inherit;
  height: 40px;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.policy-subtext {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.policy-arrow {
  font-size: 16px;
  color: #000;
}

/* Responsive Design */
@media (min-width: 769px) {
  .confirm-booking_container {
    /* padding: 3rem 2rem; */
    /* background-color: #f2f2f2; */
  }

  .user-hotel-confirm {
    /* height: ; */
    max-height: 220px;
  }

  .radisions {
    flex-direction: row;
    justify-content: space-between;
  }

  /* .radision1 {
    flex: 2;
  } */
  .radision1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* margin-left: 200px; */
  }

  .radision2 {
    flex: 1;
    min-width: 300px;
  }

  .guest-input-first-name,
  .guest-input-second-name,
  .guest-input-email,
  .guest-input-mobile,
  .guest-input-pannn {
    min-width: 150px;
  }

  .agreement-box {
    /* margin-left: 13rem; */
    /* width: 52%; */
  }
}

.guest-input-first-name,
.guest-input-email {
  margin-right: 25px;
}

@media (min-width: 1025px) {
  .agreement-box {
    /* margin-left: 13rem; */
    /* width: 52%; */
  }

  .back-title {
    margin-left: 13rem;
  }

  .guest-input-first-name,
  .guest-input-email {
    margin-right: 25px;
  }

  /* 
  .guest-input-first-name,
  .guest-input-second-name,
  .guest-input-email,
  .guest-input-mobile,
  .guest-input-pannn {
    flex: 1;
  } */

  .price-coupon-section {
    /* position: sticky; */
    top: 1rem;
  }

  .radisions {
    margin-left: 12rem;
    margin-right: 9rem;
  }
}

@media (max-width: 768px) {
  .confirm-title {
    font-size: 1.25rem;
  }

  .radision2 {
    width: 100%;
  }

  .guest-details-row1,
  .phone-input-containers,
  .input-gst {
    flex-direction: column;
  }

  .radision1 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .guest-input,
  .guest-input-country-codes,
  .gst-number {
    width: 100%;
    min-width: unset;
  }

  .coupon-input-wrapper {
    flex-direction: column;
  }

  .apply-btn {
    width: 100%;
  }

  .agreement-text {
    font-size: 0.75rem;
    margin: 1rem;
  }

  .proceed-button {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
}

.phone-input-combined .phone-combined-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
}

.guest-input-country-codes {
  width: 80px;
  min-width: 60px;
  flex-shrink: 0;
}

.guest-input-mobile {
  flex: 1;
  min-width: 150px;
  height: 40px;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .phone-input-combined .phone-combined-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .guest-input-country-codes,
  .guest-input-mobile {
    width: 100%;
  }
}

.user-container {
  display: flex;
  min-height: calc(100vh - 60px);
  width: 100%;
  box-sizing: border-box;
  margin-top: 60px;
  background-color: #f2f2f2;
}

.user-content {
  flex: 1;
  /* background-color: #f2f2f2; */
}

.user-content-inner {
  padding: 20px;
  /* background-color: #f2f2f2; */
  height: auto;
}

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

  .user-content {
    width: 100%;
  }

  .user-content-inner {
    padding: 10px;
  }
}

.bg-editProfile {
  background-color: #fff;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  padding: 1.5rem;
  box-sizing: border-box;
}

.profile-img-sec {
  width: 200px;
  height: auto;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.profile-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.edit-profile-heading {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  margin-left: 1rem;
  color: #00296b;
}

.upload-remove {
  width: auto;
  height: 16px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0;
  margin: 0 4px;
  text-decoration: none;
  cursor: pointer;
}

.upload-remove:hover {
  text-decoration: underline;
}

.edit-options {
  background-color: #fff;
  /* width: calc(100% - 4rem); */
  /* max-width: 600px; */
  height: auto;
  border-radius: 12px;
  padding: 16px;
  margin: 2rem auto;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.profile-details {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
}

.profile-row {
  display: flex;
  margin: 8px 0 0 120px;
  @media screen and (max-width: 600px) {
    margin-left: 0 !important;
  }
}

.profile-row label {
  width: 150px; /* fixed width to align colons */
  font-weight: bold;
  color: #333;
  text-align: right;
  margin-right: 10px;
}

.profile-row span {
  color: #007bff;
}

.buttons-section {
  text-align: center;
  margin-top: 20px;
}

.button-style-c-s {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}
.input-fields {
  width: 100%;
  height: 3rem;
  padding: 0.5rem;
  margin: 0;
  border-radius: 1rem;
  border: 1px solid #697586;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #697586;
  box-sizing: border-box;
}

.input-fields:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.input-fields::placeholder {
  color: #697586;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.input-fields:focus,
.input-fields:hover:not(:disabled) {
  border-color: #00296b;
  outline: none;
}

label {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #00296b;
  margin-bottom: 0.25rem;
  display: block;
}

.buttons-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.button-style-c-s {
  width: 160px;
  height: 48px;
  padding: 14px 10px;
  border-radius: 100px;
  border: 1px solid #00296b;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.button-style-c-s:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media screen and (min-width: 769px) {
  .form-row {
    flex-wrap: nowrap;
  }

  .form-group {
    flex: 1;
    min-width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .bg-editProfile {
    padding: 1rem;
  }

  .edit-options {
    width: calc(100% - 2rem);
    padding: 12px;
    margin: 1rem auto;
  }

  .input-fields {
    height: 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .edit-options {
    width: calc(100% - 1rem);
    padding: 10px;
  }

  .input-fields {
    height: 2.5rem;
  }

  .profile-img-sec {
    width: 100%;
  }

  .profile-img {
    margin-left: 0;
  }

  .upload-remove {
    margin-left: 0;
  }
}

.wishlist-container {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.wishlist-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

/* .wishlist-loading {
  text-align: center;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
} */
/* 
.wishlist-loading p {
  font-size: 18px;
  color: #555;
} */

/* .spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

.delete-account-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
}
.delete-account-title {
  font-size: 20px;
  color: #1e1e1e;
  font-weight: 700;
}

.delete-account-subtitle {
  color: #1e1e1e;
  font-size: 15px;
  padding-left: 12px;
  margin-top: 30px;
}
.delete-account-reason-section {
  background-color: #ffffff;
  border-radius: 12px;
  border-radius: 12px;
  padding: 12px;
  margin-top: 30px;
}
.delete-account-info {
  font-size: 14px;
  color: #697586;
  line-height: 28px;

  font-weight: 500;
  padding: 12px;
}
.delete-account-reasons {
  line-height: 40px;
}
.delete-account-reasons label {
  font-size: 15px;
  color: #697586;
}

.delete-account-remarks {
  background-color: #ffffff;
  margin-top: 40px;
  resize: none;
  border: 1px solid white;
}
.cancel-buttons {
  border: 1px solid #00296b;
  color: #00296b;
  padding: 14px 10px;
  border-radius: 100px;
  width: 160px;
  height: 40px;
}
.delete-account-remarks {
  border-radius: 8px;
}
.submit-buttons {
  background-color: #00296b;
  color: white;
  padding: 14px 10px;
  border-radius: 100px;
  width: 160px;
  height: 40px;
  margin-left: 20px;
}
.delete-account-remarks textarea {
  color: #697586;
  font-size: 14px;
  padding: 22px 16px;
  resize: none;
  border: 2px solid;
  text-align: start;
}
.delete-account-buttons {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .delete-account-container {
    width: 100%;
    margin-right: 20px;
    margin-left: -15px;
  }
  .submit-buttons {
    margin-top: 10px;
    margin-right: 20px;
  }
  .delete-account-reasons {
    line-height: 30px;
  }
}

.review-container {
  background-color: #fff;
  padding: 20px;
  font-family: sans-serif;
  border-radius: 18px;
}
.star-img {
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
}
.stars {
  display: flex;
}

.review-textarea {
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  width: 95%;
  resize: none;
  /* border: 2px solid #ffffff; */
  text-align: start;
  padding-left: 10px;
}
.review-submit {
  padding: 14px 10px;
  border-radius: 100px;
  width: 20%;
  color: white;
  background-color: #00296b;
  margin-top: 20px;
  border: 0px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .review-container {
    width: 100%;
    margin-right: 10px;
    padding: 10px;
    margin-left: -10px;
  }
  .review-title {
    font-size: 15px;
  }
  .review-subtitle {
    font-size: 12px;
  }
  .review-submit {
    width: 100%;
  }
}

.review-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  color: #666;
}

.top-nav {
  display: flex;
  background-color: #697586;
  padding: 0.5rem 1rem;
  justify-content: center;
  gap: 1rem;
  font-family: Inter, sans-serif;
}

/* .top-nav {
  position: fixed;
  top: 10;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center; 
  align-items: center;     
  background-color: #697586;
  padding: 0.5rem 1rem;
  gap: 1rem;
  z-index: 1000; 
} */
.top-nav-item {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.top-nav-item.active {
  color: #fff;
}

.top-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.top-nav-item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .top-nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .top-nav-item {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}

.upcomming-container {
  width: 100%;
  margin: auto;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.hotel-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hotel-details-section {
  max-width: 800px;
}

.hotel-details-section strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  display: block;
  padding: 6px;
}

.rating-section-div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
  width: 300px;
  padding: 6px;
}

.rating-div {
  display: flex;
  align-items: center;
  background-color: #003572;
  color: white;
  font-weight: bold;
  border-radius: 12px;
  padding: 4px;
  font-size: 14px;
  width: 54px;
  gap: 2px;
}

.star-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.comment {
  color: #003572;
  font-weight: 700;
  max-width: fit-content;
}

.total-ratings {
  color: gray;
  font-size: 12px;
  max-width: fit-content;
}

.location {
  margin-top: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #697586;
  padding: 6px;
}

.hotel-image img {
  width: 120px;
  height: 128px;
  border-radius: 8px;
  object-fit: cover;
}

.stay-detail-section {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
  align-items: center;
}

.stay {
  width: fit-content;
}

.stay-div {
  display: flex;
  gap: 6px;
  align-items: center;
}

.stay p {
  font-size: 12px;
  color: #697586;
  margin: 0;
}

.stay-div strong {
  display: block;
  font-size: 14px;
}

.guests-rooms-count {
  margin-top: 10px;
  border-bottom: 1px solid #ddd;
}

.guests-rooms-count p {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #697586;
  margin: 0;
}

.guests-count {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #1e1e1e;
  margin-top: 4px;
}

.payment-status-section {
  margin-top: 12px;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-status-content {
  display: flex;
  flex-direction: column;
}

.payment-status-section p {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #697586;
  margin: 0;
}

.payment-status-section span {
  color: #229958;
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
}

.nights-count {
  color: #697586;
  border: 1px solid #697586;
  border-radius: 100px;
  padding: 4px 8px;
  align-items: center;
  height: fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.booking-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between; /* Reverted to original for balanced layout */
  padding: 12px 0;
}

.delete-booking,
.voucher-booking {
  display: flex;
  align-items: center;
  gap: 5px;
}

.delete-booking button,
.voucher-booking button {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.delete-booking button {
  color: #ea1d25;
  font-weight: 600;
}

.voucher-booking button {
  color: #fff; /* Reverted to neutral color matching .guests-count */
  font-weight: 600;
  border-radius: 24px;
  background-color: #003572;
}

.delete-booking button:disabled,
.voucher-booking button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.delete-booking img,
.voucher-booking img {
  width: 20px;
  height: 20px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top: 2px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .hotel-section {
    display: block;
  }
  .hotel-image {
    width: 100%;
  }
  .hotel-image img {
    width: 100%;
    object-fit: cover;
  }
  .payment-status-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .voucher-booking {
    margin-top: 10px;
  }
  .booking-actions {
    flex-direction: column; /* Stack buttons vertically on mobile */
    align-items: flex-start;
  }
  .delete-booking,
  .voucher-booking {
    width: 100%; /* Full width for buttons on mobile */
  }
  .delete-booking button,
  .voucher-booking button {
    width: 100%;
    justify-content: center; /* Center content on mobile */
  }
}

.cancel-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.cancel-content h3 {
  margin-bottom: 8px;
}

.subtext {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.reasons {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-label {
  display: flex;
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  gap: 1rem;
}

.feedback-text {
  font-size: 14px;
  margin: 16px 0 8px;
  color: #444;
}

textarea {
  width: 100%;
  min-height: 80px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.fee-info {
  background-color: #f8f9fa;
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 14px;
}

.fee-info strong {
  display: block;
  margin-bottom: 6px;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.keep-button,
.cancel-button {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.keep-button {
  background-color: white;
  color: #003087;
  border: 1px solid #003087;
}

.cancel-button {
  background-color: #003087;
  color: white;
}

.loader-overlay {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: semi-transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  padding: 20px;
}

.custom-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-static {
  height: 100px;
  width: 100px;
  margin-bottom: 20px;
}

.three-dots {
  height: 60px;
}

/* Responsive adjustments for screens below 768px */
@media (max-width: 768px) {
  .logo-static {
    height: 80px;
    width: 80px;
    margin-bottom: 16px;
  }

  .three-dots {
    height: 24px;
  }

  .custom-loader-content {
    width: 100%;
  }
}

.vibes {
  /* background-color: #0080811F; */
  display: grid;
  grid-template-columns: repeat(auto-fit, 350px);
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
}
.vibe-image {
  height: 430px;
  object-fit: cover;
  border-radius: 0.5rem;
}
.vibes p {
  font-size: 24px;
  font-weight: 500;
}
.vibe-card:hover p {
  color: #00296b;
  font-weight: 600;
}
.city-name {
  height: 66px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.vibe-name {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 12px 6px;
  gap: 12px;
  margin-top: 60px;
}
.vibe-name img {
  height: 50px;
  width: 50px;
  cursor: pointer;
}
.vibe-card {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  width: 350px;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  font-family: sans-serif;
  height: 520px;
  flex-shrink: 0;
  gap: 16px;
  margin: 20px 0;
  display: block;
  cursor: pointer;
}
.vibe-card:hover {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Mission Section Styles */
.mission-section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #fff;
  font-family: sans-serif;
}

.mission-content {
  flex: 1;
  max-width: 50%;
  padding-right: 50px;
}

.oyo-logo {
  height: 40px;
  margin-bottom: 20px;
}

.mission-title {
  font-size: 3em;
  color: #333;
  margin-bottom: 20px;
}

.mission-description {
  font-size: 1.2em;
  color: #666;
  line-height: 1.6;
}

.mission-illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.global-illustration {
  max-width: 100%;
  height: auto;
}

.video-play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.video-play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #e74c3c;
  margin-left: 5px;
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-modal-content {
  position: relative;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow: auto;
}

.video-modal-close {
  position: absolute;
  top: 1px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.video-player {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

/* Avoota Hero Section */
.avoota-hero {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  aspect-ratio: 16 / 7;
  color: white;
}

.avoota-hero-content {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 800px;
}

.avoota-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.avoota-hero-content p {
  font-size: 1.2rem;
}

/* Avoota Intro Section */
.avoota-intro-container {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  aspect-ratio: 19 / 7;
  color: white;
}
.avoota-hero-contents {
  text-align: center;
  color: darkorange;
  padding-bottom: 16px;
  padding-top: 16px;
}
.scrolling-text-banner-top {
  width: 100%;
  background-color: #000; /* Or any color you like */
  padding: 10px 0;
  overflow: hidden;
}

.scrolling-text-banner-top p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Profile Section Styles */
.profile-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background-color: #1a1a1a;
  color: white;
  flex-wrap: nowrap;
  overflow-x: auto;
  position: relative;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.profile-card {
  background-color: #222;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  width: 200px;
  height: 500px;
  cursor: pointer;
  transition: width 0.4s ease-in-out;
}

.profile-card:hover {
  width: 350px;
}

.profile-header {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50px;
  background-color: #333;
  writing-mode: vertical-lr;
  text-orientation: upright;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.profile-name {
  font-size: 1.5em;
  color: white;
  margin: 0;
}

.profile-description {
  position: absolute;
  top: 0;
  left: 50px;
  height: 150px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease-in-out,
    visibility 0.4s ease-in-out;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px; /* Fixed width, constant */
}

.profile-card:hover .profile-description {
  opacity: 1;
  visibility: visible;
}

.profile-description p {
  font-size: 0.9em;
  line-height: 1.4;
  color: #ccc;
  text-align: center;
  margin: 0;
  width: 100%;
}

.profile-card-image {
  position: absolute;
  bottom: 0;
  left: 0; /* Fill from left */
  width: 100%; /* Full width of card */
  height: 300px;
  z-index: 0;
}

.profile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* object-position: center bottom; */
}

/* Basic Responsiveness */
@media (max-width: 600px) {
  .mission-section-container {
    flex-direction: column;
    padding: 20px;
  }

  .mission-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .mission-illustration {
    margin-top: 20px;
  }

  .profile-container {
    display: flex;
    flex-direction: row; /* Keep cards in a row */
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding: 20px;
    gap: 10px;
  }

  .profile-card {
    width: 90%; /* Full width for each card */
    max-width: 350px; /* Match desktop hover width */
    height: 450px;
    overflow: visible; /* Show image by default */
    flex-shrink: 0; /* Prevent cards from shrinking */
  }

  .profile-card:hover {
    width: 90%; /* No change on hover */
    max-width: 350px;
  }

  .profile-header {
    width: 40px;
  }

  .profile-name {
    font-size: 1.2em;
  }

  .profile-description {
    height: 120px;
    width: 300px; /* Fixed width, constant */
    left: 40px; /* Align with smaller header */
    opacity: 1; /* Visible by default */
    visibility: visible; /* Visible by default */
  }

  .profile-card:hover .profile-description {
    opacity: 1;
    visibility: visible;
  }

  .profile-card-image {
    height: 250px;
    width: 100%; /* Full width of card */
    left: 0;
  }

  .avoota-hero-content h1 {
    font-size: 1.8rem;
  }

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

@media (max-width: 480px) {
  .mission-title {
    font-size: 2.5em;
  }

  .mission-description {
    font-size: 1em;
  }

  .video-modal-content {
    width: 95%;
    padding: 10px;
  }

  .profile-card {
    width: 85%; /* Slightly smaller for very small screens */
    max-width: 320px;
  }

  .profile-card:hover {
    width: 85%;
    max-width: 320px;
    height: 465px;
  }

  .profile-description {
    width: 190px; /* Slightly smaller fixed width */
  }
}

.contact-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  height: 100vh;
}

.contact-container h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1d3557;
  text-align: center;
}

.contact-container p {
  margin-bottom: 10px;
  white-space: pre-line;
}

.terms-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background-color: #f9f9f9;
  color: #333;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.terms-container h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1d3557;
  text-align: center;
}

.terms-container h4 {
  font-size: 22px;
  margin-top: 30px;
  color: #2c5282;
}

.terms-container h5 {
  font-size: 18px;
  margin-top: 20px;
  color: #3d5a80;
}

.terms-container p {
  margin: 10px 0;
}

.terms-container ol {
  padding-left: 20px;
  margin-top: 10px;
}

.terms-container li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .terms-container {
    padding: 20px;
  }

  .terms-container h3 {
    font-size: 24px;
  }

  .terms-container h4 {
    font-size: 20px;
  }

  .terms-container h5 {
    font-size: 17px;
  }
}

.privacy-policy {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.privacy-policy h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1d3557;
  text-align: center;
}

.privacy-policy h4 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #2c5282;
}

.privacy-policy p {
  margin-bottom: 15px;
}

.privacy-policy ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.check-status-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f2f2f2, #f2f2f2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.check-status-page h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Loader styles (assuming Loader component doesn't have its own) */
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #22c55e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .check-status-page {
    padding: 1rem;
  }

  .check-status-page h1 {
    font-size: 1.25rem;
  }

  .loader {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .check-status-page h1 {
    font-size: 1rem;
  }

  .loader {
    width: 24px;
    height: 24px;
  }
}

/* Core container styles */
.booking-status-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f2f2f2, #f2f2f2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.booking-status-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeIn 0.5s ease-in-out;
}

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

/* Status content for success state */
.status-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Confirmation message styles */
.confirmation-message {
  flex: 1;
  text-align: left;
}

.status-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a8a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.status-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.my-bookings-button {
  padding: 0.75rem 2rem;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition:
    transform 0.2s,
    background 0.2s;
}

.my-bookings-button:hover {
  background: linear-gradient(to right, #00296b, #010423);
  transform: scale(1.05);
}

.back-to-home-link {
  margin-left: 30px;
  display: inline-block;
  margin-top: 1rem;
  color: #1e3a8a;
  text-decoration: none;
  font-size: 0.875rem;
}

.back-to-home-link:hover {
  text-decoration: underline;
}

/* Payment summary and details */
.payment-right-summary {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.payment-summary {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.payment-header {
  display: flex;
  flex-direction: column;
}

.payment-status {
  color: #22c55e;
  font-weight: 600;
}

.status-icon-wrapper {
  display: flex;
  align-items: center;
}

.status-icon {
  width: 2rem;
  height: 2rem;
  color: #22c55e;
}

.payment-details {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.payment-details-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.payment-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.detail-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.detail-value {
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Failure state styles */
.payment-failure-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.payment-failure-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #b91c1c;
  margin-bottom: 1rem;
}

.payment-failure-short {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.status-icon1 {
  width: 1.5rem;
  height: 1.5rem;
  color: #ef4444;
  margin-right: 0.5rem;
}

.payment-failure-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.payment-failure-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ef4444;
  color: white;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: background-color 0.15s ease-in-out;
  font-size: 1.125rem;
  margin-left: auto;
  margin-right: auto;
}

.payment-failure-button:hover {
  background: linear-gradient(to right, #dc2626, #b91c1c);
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-status-container {
    padding: 1rem;
  }

  .status-content {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
  }

  .status-heading {
    font-size: 1.75rem;
    text-align: center;
  }

  .status-description {
    text-align: center;
    font-size: 0.75rem;
  }

  .payment-right-summary {
    margin-left: 0;
    width: 100%;
  }

  .payment-summary,
  .payment-details {
    width: 100%;
    max-width: 100%;
  }

  .my-bookings-button,
  .payment-failure-button {
    /* width: 100%; */
    padding: 0.75rem;
  }

  .back-to-home-link {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .status-heading {
    font-size: 1.5rem;
  }

  .payment-failure-heading {
    font-size: 1.25rem;
  }

  .payment-failure-description,
  .status-description {
    font-size: 0.7rem;
  }

  .payment-detail-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .detail-label,
  .detail-value {
    font-size: 0.75rem;
  }
}

/* src/styles/IdleSessionHandler.css */

/*--------------------------------------
  Overlay that sits on top of everything,
  covering full viewport when session expires
--------------------------------------*/
.idle-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* highest possible so it overlays all content */
}

/*--------------------------------------
  Modal box centered inside overlay
--------------------------------------*/
.idle-modal {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 400px;
  width: 90%; /* responsive: 90% of viewport width up to 400px */
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/*--------------------------------------
  Modal Title
--------------------------------------*/
.idle-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #333333;
}

/*--------------------------------------
  Modal Message
--------------------------------------*/
.idle-message {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555555;
  line-height: 1.4;
}

/*--------------------------------------
  Reload Button
--------------------------------------*/
.idle-button {
  background-color: #007bff; /* primary brand color */
  border: none;
  color: #ffffff;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.idle-image {
  height: 100px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.idle-failure-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #0056b3;
  color: white;
  font-weight: 700;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: background-color 0.15s ease-in-out;
  font-size: 1.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.orange-color {
  background-color: tomato;
}
/*--------------------------------------
  Responsive adjustments for small screens
--------------------------------------*/
@media (max-width: 480px) {
  .idle-modal {
    padding: 16px;
  }

  .idle-title {
    font-size: 1.25rem;
  }

  .idle-message {
    font-size: 0.9rem;
  }

  .idle-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

