body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* Flex container */
/* Flex container */
.container {
    display: flex;
    align-items: stretch; /* Ensures both sidebar and content stretch equally */
 
}
.hiddene{
  display: none;
}
/* Sidebar */
.sidebar {
    width: 252px;
    background-color: #85B7CC;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    height: 100vh; /* Fixed height to fit the screen */
  
  
    overflow: hidden; /* Prevents the entire sidebar from scrolling */
}

/* Responsive Sidebar for Smaller Screens */
@media (max-width: 1249px) {
    .sidebar {
        width: 152px;
    }
    .content {
        margin-left: 152px;
    }
}
/* Content */

/* Profile section */
.profile {
    text-align: center;
}

.profile-pic {
    margin-top: 15px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid black; /* Add black border */
}

.name {
    font-weight: 500;
    font-size: 20px;
    color: #000000;

}

.settings-btn {
    background: transparent;
    border: 1px solid #000000; /* Added border width and style */
    padding: 5px 15px;
    font-weight: 500; /* Corrected font property */
    font-size: 18px; /* Corrected size property */
    line-height: 21px;
    border-radius: 20px;
    cursor: pointer;
}

/* Navigation */
nav {
    flex-grow: 1; /* Allows it to take up remaining space */
    overflow-y: auto; /* Enables scrolling if content overflows */
    max-height: calc(100vh - 20px); /* Adjusted height to account for spacing */
    width: 100%;
    padding-right: 10px;
margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps text left-aligned */
    padding-left: 90px;
    transition: max-height 0.3s ease-in-out; /* Smooth expansion */

    /* Center content properly without cutting off the first item */
  
}

/* Increase nav's height when dropdown is active */
nav.expanded {
    max-height: 100vh; /* Allows dropdown to be fully visible */
}

/* Hide scrollbar for cleaner design */
nav::-webkit-scrollbar {
    width: 6px;
}

nav::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}


/* Navigation */
.nav-item {
    display: block;
    padding: 8px;
    text-decoration: none;
    color: black;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
}

/* Apply background color when the item is pressed and remains active */
.nav-item.active {
    background: #FFFFFF80; /* Background color when active */
    border-radius: 10px;
}

/* Navigation icon */
.nav-icon {
    width: 30px; /* Adjust as needed */
    height: 30px;
    margin-right: 8px; /* Adds spacing between the icon and text */
    vertical-align: middle; /* Aligns the icon properly */
}



#services-menu {
    display: none;
    position: relative; /* Allows it to expand inside nav */
    padding: 3px 20px;
 
}

.dropdown {
    padding: 0px;
    margin: 0px;
}

.dropdown.active #services-menu {
    display: block;
}

.nav-item12 {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    text-decoration: none;
    color: black;
    margin-top: 0px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
}

/* Apply background color when the item is pressed and remains active */
.nav-item12.active {
    background: #FFFFFF80; /* Background color when active */
    border-radius: 10px;
}


/* Logout */
.logout {
    color: #FF2C1A;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding-top: 10px;
padding-bottom: 10px;
    margin-top: auto; /* Ensures it stays at the bottom */
}

.logout-icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Main Content - Scrollable */
.content {
    flex-grow: 1;
   
    height: 100vh;
    overflow-y: auto; /* Enables scrolling */
   
}




/* Overlay */
.overlay-popupflightpackage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .modal-popupflightpackage {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    position: relative;
    height: 700px; /* Fixed height */
    overflow-y: auto; /* Enables vertical scrolling if content overflows */
  }
  
  
  /* Close Button */
  .close-btn-popupflightpackage {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
  }
  
  .close-btn-popupflightpackage:hover {
    color: #000;
  }
  
  /* Optional for hiding */
  .hidden {
    display: none;
  }
  
  /* Flight Card - Optional refinements */
  .flight-card-popupflightpackage {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-top: 10px;
    border-bottom: 2px solid rgba(211, 238, 255, 1);
    padding-bottom: 10px;
  }
  
  .flight-info-popupflightpackage {
    display: flex;
    gap: 12px;
  }
  
  .airline-logo {
    width: 50px;
    height: auto;
  }
  

  

.hotel-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
}
.hotel-modal .modal-content {
  background: #fff;
  padding: 32px 28px 24px 28px;
  border-radius: 16px;
  width: 95vw; max-width: 540px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  animation: modalPop 0.25s cubic-bezier(.4,2,.6,1) 1;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
#hotelList {
  margin-top: 18px;
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 60px;
  max-height: 45vh;
}
@keyframes modalPop {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
#closeModalBtn {
  position: absolute;
  top: 18px; right: 24px;
  font-size: 28px;
  color: #888;
  transition: color 0.2s;
}
#closeModalBtn:hover { color: #e74c3c; }
#cityInput, #hotelSearchInput {
  width: 100%;
  padding: 10px 12px;
  margin: 10px 0 14px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: border 0.2s;
}
#cityInput:focus, #hotelSearchInput:focus { border: 1.5px solid #0077ff; }
#fetchHotelsBtn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.2s;
}
#fetchHotelsBtn:hover { background: #005fcc; }

.hotel-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e3e8ee;
  padding: 14px 16px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.hotel-list-item.selected {
  border: 2px solid #0077ff;
  background: #eaf4ff;
}
.hotel-list-item label {
  flex: 1;
  cursor: pointer;
  font-size: 16px;
}
.hotel-list-item .hotel-title {
  font-weight: 600;
  font-size: 17px;
  color: #222;
}
.hotel-list-item .hotel-address {
  color: #666;
  font-size: 14px;
  margin-top: 2px;
}
.hotel-list-item .hotel-price {
  color: #0077ff;
  font-weight: 500;
  font-size: 15px;
  margin-top: 4px;
}
#confirmHotelSelection {
  width: 100%;
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.2s;
  position: sticky;
  bottom: 0;
  z-index: 2;
}
#confirmHotelSelection:hover { background: #005fcc; }


.hotel-desc-modal {
  position: fixed; z-index: 99999; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center;
}
.hotel-desc-content {
  background: #fff; border-radius: 16px;  width: 95vw; max-height: 95vh; overflow-y: auto; padding: 0 0 24px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}



#confirmHotelSelectionmulti {
  width: 100%;
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.2s;
  position: sticky;
  bottom: 0;
  z-index: 2;
}







/* --------------------multilocaiom------------------------------ */

.hotel-modal-card:last-child { border-bottom: none; }
.hotel-modal-card input[type="checkbox"] {
  margin-top: 6px;
  accent-color: #0077ff;
  width: 18px;
  height: 18px;
}
.hotel-modal-card-content {
  flex: 1;
  min-width: 0;
}
.hotel-modal-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hotel-modal-card-stars img {
  margin-left: 2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.hotel-modal-card-address {
  font-size: 13px;
  color: #888;
  margin: 2px 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hotel-modal-card-price {
  font-size: 14px;
  color: #0077ff;
  font-weight: 500;
  margin-top: 2px;
}


.hotel-modal-card {
  border: 2px solid #e5eaf0;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 12px 10px;
  display: flex;
  align-items: flex-start;
  transition: border-color 0.2s;
  background: #fff;
}
.hotel-modal-card-selected {
  border-color: #0077ff !important;
  box-shadow: 0 0 0 2px #0077ff33;
}
.package-img-style {
  width: 250px;
  height: 250px;
  border-top-left-radius: 0.75rem; /* same as Tailwind's rounded-t-xl */
  border-top-right-radius: 0.75rem;
  object-fit: cover; /* optional: keeps aspect ratio nicely */
}

.empty-state-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  margin: 32px auto;
  max-width: 480px;
}

.empty-state-emoji {
  font-size: 48px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.empty-state-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.empty-state-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.contact-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}