*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* Ensure body takes full height */
html, body {
  height: 100%;
  width: 100%;
  margin: 0; /* Adjust based on navbar height */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    background-color: #fff;
    background-image: 
        radial-gradient(at 80% 0%, rgba(255,214,221,0.3) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(255,214,221,0.2) 0px, transparent 50%);
}

/* Main content area */
.container {
  flex: 1; /* Allow the container to grow and fill space */
}

.container-fluid {
  padding: 0; /* Remove default padding */
}

/* Improve navbar styles */
.navbar {
  background-color: transparent;/* Light background for navbar */
  padding: 0rem 0rem; /* Reduced padding */
  z-index: 1000; /* Ensure navbar is above other elements */
  width: 100%; /* Full width */
  position: fixed; /* Fix position to prevent content overlap */
  top: 0; /* Stick to the top */
  /* margin-top: 1.5rem; */
}
.navbar-container
{
  background-color: #ffffffd7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  border-radius: 20px;
  backdrop-filter: blur(15px);
}
.nav-link {
  color: #000; /* Darker text color */
  font-weight: 500;
}
.nav-link:hover {
  color: #0056b3; /* Change color on hover */
}

.top-section {
  background: linear-gradient(rgba(241, 245, 184, 0.7), rgba(171, 241, 183, 0.7)),
    url("../images/bg.jpg")
      center/cover;
  padding-top: 4rem;
  padding-bottom: 1rem;
  color: white; /* Account for fixed navbar */
}


/* Add styles for improved button aesthetics */
.btn {
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #0056b3; /* Darker shade for hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Footer styles */
.footer-wrapper {
    background-color: #3bbcc0; /* Change to a lighter gray */
    color: #333; /* Darker text for contrast */
    padding: 0.5rem; /* Reduced padding */
    position: relative; /* Allow for flexbox layout */
}

.footer-wrapper a {
    color: #ffffff; /* White links */
}

.footer-wrapper a:hover {
    color: #ffc107; /* Yellow on hover */
}
.custom-grid-container {
  margin-top: 20px;
}


.products_dataTables_paginate {
  margin-top: 20px; /* Adjust as needed */
  display: flex;
  justify-content: center; /* Center the pagination */
}

.products_dataTables_paginate .pagination {
  margin-top: 10px; /* Add some space between the table and pagination */
}

.products_dataTables_paginate {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Adjust as needed */
}
.products_dataTables_paginate .paginate_button {
  padding: 5px 10px;
  margin: 0 5px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
}
.products_dataTables_paginate .paginate_button.current {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}


.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative; /* Position relative for absolute positioning of the buttons */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  position: relative;
  overflow: hidden;
}

.card-hover:hover .action-buttons {
  display: flex !important;
}

.card-hover .action-buttons {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.card-hover:hover .action-buttons {
  opacity: 1;
  visibility: visible;
}


#products_card-container .card {
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#products_card-container .card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
}


.badge {
  font-weight: 500;
  display: inline-block; /* Ensure the badge is displayed inline */
  margin-top: 5px; /* Add some spacing if needed */
}

/* Add view toggle button styles */
.view-toggle-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
  background-color: #fff;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-toggle-btn.active {
  background-color: #435ebe;
  color: #fff;
  border-color: #435ebe;
}

.view-button {
    position: absolute; /* Position the button absolutely */
    bottom: 10px; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
    display: none; /* Initially hidden */
}

.card:hover .view-button {
    display: block; /* Show the button on hover */
}

.action-buttons {
    position: absolute; /* Position the buttons absolutely */
    bottom: 10px; /* Adjust as needed */
    right: 10px; /* Adjust as needed */
    display: flex; /* Use flexbox for button alignment */
    gap: 5px; /* Space between buttons */
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

.card-hover:hover .action-buttons {
    opacity: 1; /* Show buttons on hover */
    visibility: visible; /* Show buttons on hover */
}

#cart-icon {
    position: relative; /* Position relative for badge positioning */
}

#cart-count {
    position: absolute;
    top: -5px; /* Adjust as needed */
    right: -10px; /* Adjust as needed */
    font-size: 0.75rem; /* Smaller font size for the badge */
}

.cart-item {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #ddd; /* Add border */
    border-radius: 8px; /* Rounded corners */
}

.cart-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

.card-title a {
    color: #007bff; /* Bootstrap primary color */
    text-decoration: none;
}

.card-title a:hover {
    text-decoration: underline;
}

.card-body {
    padding: 1.5rem; /* Add padding for better spacing */
}

.btn-danger {
    display: flex; /* Align icon and text */
    align-items: center;
}

.btn-danger i {
    margin-right: 5px; /* Space between icon and text */
}

.btn-success {
    width: 100%; /* Full width for the confirm button */
}

/* Add any additional styles if necessary */

@media (min-width: 1281px) {
  .offcanvas.offcanvas-end {
    width: 50vw !important;
  }
}
.booking-bar
{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: .5rem;
    border-radius: 20px;
    margin-top: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.form-select
{
    padding: .7rem 1rem;
    border: none;
    border-radius: 15px;
    background-color: #fff4fa;
    outline: none;
    
}

.date-hero
{
    padding: .7rem 1rem;
    border: none;
    border-radius: 15px;
    background-color: #fff4fa;
    outline: none;
    width: 100%;
}




.cool-link {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.cool-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ff45ab;
  transition: width .3s;
}

.cool-link:hover::after {
  width: 100%;
  transition: width .3s;
}
.box-visit
{
    display: flex;
    background-color: #ffe6f4;
    border-radius: 20px;
    min-height: 17vh;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin-bottom: 1rem;
}
.box-visit::after
{
    content: '8/10';
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #ff43b4;
  border-radius: 25px;
  padding: .15rem;
  width: 3.5rem;
  justify-content: center;
  display: flex;
  position: absolute;
  margin-top: -10px; 
  margin-left: -15px; 
}
.sec-left
{
    width: 270px;
    padding: .5rem;
}
.sec-left img
{
    object-fit: cover;
    border-radius: 15px;
}
.sec-right
{
    padding-right: 2rem;
    margin-top: 1rem;
    margin-left: 1rem;
}


/* slider */
.logos-slider {
  display: inline;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0,
    #000 15%,
    #000 85%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0,
    #000 15%,
    #000 85%,
    rgba(0, 0, 0, 0) 100%
  );
}
.logos-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: slide 25s linear infinite;
}
.logos-slider-container p
{
  background-color: #ffffff;
  padding: .8rem;
  border-radius: 15px;
  border: 1px solid #ff81c6;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.slider-wrapper {
  width: 100%;
  background-color: #ffffff;
  padding: 1.1rem;
  margin-bottom: 2.5rem;
}
.box-rounded-acc
{
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #ff81c6;
  border-radius: 20px;
}
.visit-wrapper
{
  background-color: #F5F5FF;
}
.paginate_button
{
  border-radius: 1rem !important;
}


@media (max-width: 768px) {
  /* Convert table to block layout */
  #table_main, #table_main tbody, #table_main tr, #table_main td {
      display: block;
      width: 100%;
  }
  
  /* Hide headers */
  #table_main thead {
      display: none;
  }
  
  /* Style each row as a card */
  #table_main tr {
      border: 1px solid #ddd;
      margin-bottom: 15px;
      padding: 10px;
      position: relative;
  }
  
  /* Add data labels */
  #table_main td:before {
      content: attr(data-label);
      font-weight: bold;
      display: inline-block;
      width: 30%;
      vertical-align: top;
  }
  
  /* Style the input */
  #table_main .total_prices {
      width: 100% !important;
      max-width: 100% !important;
      display: inline-block;
  }
  
  /* Position the delete button */
  #table_main td:last-child {
      position: absolute;
      top: 10px;
      right: 10px;
  }
  
  /* Remove border from last cell */
  #table_main td:last-child:before {
      display: none;
  }
}

/* Animation for new order cards */
.new-order-highlight {
  position: relative;
  z-index: 100;
  transition: all 0.3s ease;
}

.pulse-effect {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.5) !important;
}

@keyframes border-pulse {
  0% { border-color: #e0f2fe; }
  50% { border-color: #38bdf8; }
  100% { border-color: #e0f2fe; }
}

.new-order-highlight .card-header {
  animation: border-pulse 1.5s 3;
  border-top: 3px solid #e0f2fe; /* Add initial border color */
}

@keyframes newOrderPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0.5); }
  50% { box-shadow: 0 0 0 15px rgba(0, 150, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0); }
}

.new-order-animation {
  animation: newOrderPulse 1.5s ease-out 2;
  position: relative;
  z-index: 100;
}

/* Enhanced styling */
.timeslot-label {
  border-radius: 10px;
  transition: all 0.2s ease;
  border-width: 2px;
  height: 100%;
}

.timeslot-label:hover {
  background-color: rgba(13, 110, 253, 0.08);
  transform: translateY(-2px);
}

.btn-check:checked + .timeslot-label {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
  transform: translateY(-1px);
}

.btn-check:checked + .timeslot-label small {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .timeslot-label {
      padding: 0.75rem 0.5rem;
  }
}

.pwa-install-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  padding: 10px 15px;
  background: #4285f4;
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hover-shadow-lg {
  transition: all 0.3s ease;
}
.hover-shadow-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1) !important;
}

.badge {
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .card-header, .card-body, .card-footer {
      padding-left: 1rem;
      padding-right: 1rem;
  }
  .btn-group {
      display: flex;
      width: 100%;
  }
  .btn-group .btn {
      flex: 1;
  }
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}




.gradient-text {
    background: linear-gradient(90deg, #01c4f5 0%, #1202f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.fade-in {
    animation: fadeIn 1.2s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
.booking-bar {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2rem 1rem 1rem 1rem;
    margin-top: 1.5rem;
}
@media (max-width: 767.98px) {
    .booking-bar {
        padding: 1rem 0.5rem;
    }
    .display-4 {
        font-size: 2rem;
    }
}

.notification-badge, .cart-count {
    font-size: 0.65rem;
    padding: 0.25em 0.4em;
    min-width: 1.25em;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #f0f7ff;
}

.notification-message {
    white-space: normal;
    word-break: break-word;
}

.dropdown-header {
    font-weight: 500;
}

.navbar {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #333;
    transition: all 0.2s;
}

.nav-link:hover, .nav-link:focus {
    color: #0d6efd;
}

.notification-badge {
    display: none; /* Hide by default */
    /* display: block !important; */ /*Override any conflicting styles */
    visibility: visible !important;
    opacity: 1 !important;
}
.notification-badge, .cart-count {
    font-size: 0.6rem;
    padding: 0.25em 0.5em;
}

.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.notification-item:last-child {
    border-bottom: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin: 0 0.25rem;
    }
}

/* Add to your stylesheet */
@keyframes bellRing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(5deg); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes flash {
  0%, 100% { background-color: #dc3545; } /* Red */
  50% { background-color: #ff6b7f; } /* Lighter red */
}

.bell-animate {
  animation: bellRing 0.5s ease 3; /* Rings 3 times */
}

.badge-pulse {
  animation: pulse 0.5s ease 3;
}

.badge-flash {
  animation: flash 0.5s ease 3;
}
.navbar {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #333;
    transition: all 0.2s;
}

.nav-link:hover, .nav-link:focus {
    color: #0d6efd;
}

.notification-badge, .cart-count {
    font-size: 0.6rem;
    padding: 0.25em 0.5em;
}

.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-radius: 0.5rem;
}

.dropdown-item {
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-header {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.notification-item:last-child {
    border-bottom: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin: 0 0.25rem;
    }
}
/* Additional CSS to ensure proper dropdown positioning */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: static !important;
    }
    .dropdown-menu {
        position: absolute !important;
    }
    .dropdown-menu-end {
        right: 0 !important;
        left: auto !important;
    }
}


.toggle-password {
    height: calc(3.5rem + 2px); /* Match form-floating height */
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    top: -8px; /* Adjust to align with input */
}

.toggle-password:hover {
    background-color: #f8f9fa;
}

.toggle-password i {
    font-size: 1.2rem;
}

/* Add to your stylesheet */
.animate-pulse {
    animation: pulse 1s ease infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.notification-item {
    transition: all 0.3s ease;
}

.notification-success {
    border-left: 3px solid #28a745;
}

.notification-error {
    border-left: 3px solid #dc3545;
}

.notification-warning {
    border-left: 3px solid #ffc107;
}

.notification-info {
    border-left: 3px solid #17a2b8;
}



/* Clean Carousel CSS with Original Button Styling */
.wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;
  margin: auto;
  margin-top: 2rem;
  padding: 0 40px; /* Increased padding for button space */
}

/* Original Button Styling */
.wrapper i {
  height: 50px;
  width: 50px;
  background: rgb(233, 118, 181);
  color: white;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 1;
  font-size: 1.25rem;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s ease;
}

.wrapper i:hover {
  background: rgb(226, 85, 165);
}

.wrapper i:first-child {
  left: -5px;
}

.wrapper i:last-child {
  right: -5px;
}

/* Carousel Container */
.carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 15px 5px;
  list-style: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
    overflow-y: hidden; /* Add this line */
    -webkit-overflow-scrolling: auto; /* Change from 'touch' to 'auto' */
    overscroll-behavior-x: contain; /* Prevent pull-to-refresh */
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* Card Styling */
.carousel .card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  background: #fdd5ff92;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.carousel .card:hover {
  transform: translateY(-5px);
}

.card .img img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.card h6 {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  color: #333;
}


.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.carousel-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#left {
    left: 0;
}

#right {
    right: 0;
}

.carousel-control svg {
    width: 16px;
    height: 16px;
}


/* Responsive Adjustments */
.carousel .card {
  width: calc(100% - 30px);
}

@media (min-width: 576px) {
  .carousel .card {
    width: calc(50% - 15px);
  }
  
  .wrapper i:first-child {
    left: -10px;
  }
  
  .wrapper i:last-child {
    right: -10px;
  }
}

@media (min-width: 768px) {
  .carousel .card {
    width: calc(33.333% - 15px);
  }
  
  .wrapper i:first-child {
    left: -15px;
  }
  
  .wrapper i:last-child {
    right: -15px;
  }
}

@media (min-width: 992px) {
  .carousel .card {
    width: calc(25% - 15px);
  }
  
  .wrapper i:first-child {
    left: -22px;
  }
  
  .wrapper i:last-child {
    right: -22px;
  }
}

@media (min-width: 1200px) {
  .carousel .card {
    width: calc(20% - 15px);
    min-width: 200px;
  }
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(244, 114, 182, 0.2);
}
.service-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    width: 100px;
    padding: 5px 0;
    text-align: center;
    color: white;
    font-size: 0.7rem;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.btn-pink:hover {
    background-color: #d43382!important;
    transform: translateY(-2px);
}


.input-group > .select2-container--bootstrap {
    width: auto;
    flex: 1 1 auto;
    background-color: white;
    border-radius: .21em;
}

.input-group > .select2-container--bootstrap .select2-selection--single {
    height: 100%;
    line-height: inherit;
    padding: 0.5rem 1rem;
}


.search-container{
    padding: 20px;
    background: linear-gradient(135deg, #3b70c0 0%, #5f96e9 100%);
}

.input-group-text{
    font-size: 1.5rem;
}

.search-control{
    line-height: 2.3;
}

.search-container{
    /* padding: 50px; */
    background-color: rgb(26, 153, 185);
}

.search-icon-color{
    color: #2c7ccb;
}


.list-left-panel{
    background-color: white;
}

.list-right-panel{
    background-color: rgb(255, 255, 255);
}

.travel-way {
    position: relative;
}

.travel-detail .circle:last-child::before {
    content: none !important;
}

.travel-detail .circle::before {
    background-color: #26630e;
    content: "";
    height: calc(100% - 12px);
    left: 47%;
    position: absolute;
    top: 12px;
    width: 2px;
    z-index: 0;
}

.travel-detail .circle {
    background-color: #51cf5f;
    border: 1px solid black;
    border-radius: 50%;
    height: 12px;
    margin: 0 auto;
    width: 12px;
    z-index: 1;
}



.bus-facilities{
    color: rgb(98, 166, 234);
}

@media (min-width: 1281px) {
    .offcanvas.offcanvas-end {
      width: 50vw !important;
    }
}


.app-container{
    padding-left: 10px;
    padding-right: 10px;
}


.seating{
    background-color: #e7e3e3;
    padding: 15px;
    text-align: center;
    
}

.seat_booking_list{
    margin: 5px;
    padding: 5px;
    display: inline-block;
    /* background-color: transparent;  */
    min-width:35px; 
    max-width:35px; 
    min-height:35px; 
    max-height:35px; 
    /* color: black; */
    vertical-align: middle;
    text-align: center;
    /* text-shadow: 1px 1px #ffffff;
    text-decoration: threedshadow; */
    border-radius: 5px;
    cursor: pointer;
}

.seat_empty_area{
    background-color: transparent; 
    border: 0px; 
}
.seat_closed{
    background-color: rgb(181, 180, 180); 
    color: white;
    
    border: 2px solid #ffffff; 
}

.seat_available{
    background-color: #ffffff; 
    border: 2px solid #599fe2; 
    color: #599fe2; 
    cursor: pointer; 
}

.seat_ladies{
    background-color: #f7a3db;  
    color: #ffffff; 
}

.seat_selected_by_other{
    background-color: #ffed77bb; 
    border: 2px solid #020274; 
    color: #020274; 
    cursor: pointer; 
}

.seat_reserved_by_other{
    background-color: #ec9f57; 
    border: 2px solid #020274; 
    color: #020274; 
    cursor: pointer; 
}

.seat_booked_by_other{
    background-color: #599fe2; 
    border: 2px solid #020274; 
    color: #020274; 
    cursor: pointer; 
}

.seat_selected_male{
    background-color: #203e6a; 
    border: 2px solid #ffffff; 
    color: #ffffff; 
    cursor: pointer; 
}

.seat_selected_female{
    background-color: #f7a3db; 
    border: 2px solid #ffffff; 
    color: #ffffff; 
    cursor: pointer; 
}


.reserved{
    color: #ec9f57; 
}
.booked{
    color: #599fe2; 
}

.seat_reserved_male{
    background-color: #ec9f57; 
    border: 2px solid #ffffff; 
    color: #ffffff; 
    cursor: pointer; 
}
.seat_reserved_female{
    background-color: #f7a3db; 
    border: 2px solid #ec9f57; 
    color: #ffffff; 
    cursor: pointer; 
}
.seat_booked_male{
    background-color: #599fe2; 
    border: 2px solid #ffffff; 
    color: #ffffff; 
    cursor: pointer; 
}
.seat_booked_female{
    background-color: #c82d54; 
    border: 2px solid #ffffff; 
    color: #ffffff; 
    cursor: pointer; 
}

.seat_reserved_online_male{
    background-color: #599fe2; 
    border: 2px solid #05772b; 
    color: #ffffff; 
    cursor: pointer; 
}
.seat_reserved_online_female{
    background-color: #f7a3db; 
    border: 2px solid #05772b; 
    color: #ffffff; 
    cursor: pointer; 
}
.seat_booked_online{
    border: 2px solid #05772b;
}

.seat_business_class{
    text-decoration: underline;
}

#selected_seats{
    max-height: 150px;
    overflow-y: scroll;
}

.seat_select_link{
    cursor: pointer;
}

/* Style for the seat number badge */
.nav-link .badge {
    transform: translate(-50%, -60%);
    padding: 0.15em 0.35em;
}

/* Hover effect for remove button */
.nav-link .bi-x-circle {
    opacity: 0.6;
    transition: opacity 0.2s;
}
.nav-link:hover .bi-x-circle {
    opacity: 1;
}

/* Navigation buttons styling */
.previous-tab, .next-tab {
    min-width: 100px;
    transition: all 0.2s;
}

.previous-tab:hover, .next-tab:hover {
    transform: translateY(-1px);
}

/* Focus states for better accessibility */
#passengerTabs .nav-link:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: -2px;
}

/* Active tab indicator */
.nav-link.active .bi-person-seat {
    color: var(--bs-primary);
    transform: scale(1.1);
    transition: transform 0.2s;
}