@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500&display=swap");
.flatpickr-buttons-container {
  display: flex;
  justify-content: center; /* Align buttons to the center */
  padding: 10px;
  gap: 5px; /* This creates space between the buttons */
}

.flatpickr-ok-button {
  font-family: "Quicksand", sans-serif;
  color: #fff;
  background: #e14d20 url("icon/ok.svg") no-repeat center center;
  border: 2px solid #ffffff;
  border-radius: 20px;
  padding: 10px; /* Adjust padding as needed */
  width: 40px; /* Adjust width as needed */
  height: 40px; /* Adjust height as needed */
  margin-top: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  background-size: 50%; /* Adjust size as needed */
  text-align: center;
  line-height: 40px; /* Adjust line height to the height of the button to vertically center the text (if any) */
}

.flatpickr-ok-button:hover {
  background-color: #f88a4b;
  background-image: url("icon/ok.svg"); /* Ensure the image persists on hover */
}
/* Ensure that the .current class is being applied to the correct <li> element */
.menu-bar li.current a {
  color: #fff; /* Keep text color white for contrast */
  background-color: #f15a22; /* Vibrant color for the background */
  border-radius: 15px; /* Rounded corners */
  padding: 10px 15px; /* Padding for better spacing */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  position: relative; /* Position relative to allow absolute positioning of pseudo-elements */
  text-decoration: none; /* Remove underline from links if present */
}

.menu-bar li.current a:hover {
  background-color: #e14d20; /* Slightly darker shade on hover for a subtle effect */
}

/* Add the dash using the :after pseudo-element */
.menu-bar li.current a:after {
  content: ""; /* Required for pseudo-elements */
  display: block; /* Make it a block to give it width and height */
  width: 30px; /* Width of the dash */
  height: 3px; /* Height of the dash */
  background-color: #f88a4b; /* Color of the dash */
  position: absolute; /* Position absolutely within the relative parent */
  bottom: -6px; /* Position below the text */
  left: 50%; /* Start from the middle */
  transform: translateX(-50%); /* Center the dash */
  border-radius: 1px; /* Optional: slightly round the corners of the dash */
}
.leaflet-control-attribution.leaflet-control {
  display: none;
}
#loading-skeleton {
  width: 1510px;
}
.skeleton-table {
  width: 100%;
}

.skeleton-row {
  display: flex;
}

.skeleton-cell {
  margin: 5px;
  border-radius: 15px;
  animation: shimmer 10.5s infinite;
}

.skeleton-cell.header {
  height: 35px;
  flex: 2;
  /* background: linear-gradient(90deg, #f88a4b 25%, #f15a22 50%, #f88a4b 75%); */
  background: linear-gradient(90deg, #f6f7f8 25%, #eaebed 50%, #f6f7f8 75%);
  background-size: 400% 100%;
}

.skeleton-cell.row {
  height: 45px;
  flex: 1;
  background: linear-gradient(90deg, #f6f7f8 25%, #eaebed 50%, #f6f7f8 75%);
  background-size: 400% 100%;
}
.skeleton-cell.size-1 {
  flex: 2;
}

.skeleton-cell.size-2 {
  flex: 1;
}

@keyframes shimmer {
  0% {
    background-position: -400% 0;
  }
  100% {
    background-position: 400% 0;
  }
}
.hidden {
  display: none !important;
}
.icon {
  margin-right: 8px;
  width: 12px;
  height: 12px;
}
#top-container {
  width: 100%;
  margin-bottom: 3px;
}

.menu-bar {
  width: 100%;
  box-sizing: border-box;
}

.menu-bar ul {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-image: linear-gradient(to right, #f26d4f, #e14d20);
}

.menu-bar li {
  float: left;
}

.menu-bar li a {
  display: block;
  color: white;
  text-align: right;
  padding: 14px 16px;
  text-decoration: none;
}

.menu-bar li a:hover {
  border-radius: 15px;
  background-color: #f88a4b;
  transition: background-color 0.3s ease;
}

#route-info-container {
  width: 60%;
  max-width: 910px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: rgba(248, 249, 250, 0.5);
  border-radius: 10px;
  margin-bottom: 20px;
}

#route-info-container > div {
  flex: 1;
  display: flex; /* Added */
  align-items: center; /* Added */
  justify-content: center; /* Added */
}

.pac-item-query {
  font-size: 16px;
  display: block;
}
.pac-matched {
  font-weight: normal;
}

.pac-container {
  font-family: "Quicksand", sans-serif;
  border-radius: 15px;
  background: white;
  border: 0.1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pac-item {
  display: block;
  flex-direction: column;
  font-size: 12px;
  border-radius: 15px;
  border: 0.1px solid white;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

.pac-item:hover {
  background-color: #f1f1f1;
}

.pac-icon {
  display: none;
}

.font-base {
  font-family: "Quicksand", sans-serif;
}
#scrollToTop,
#scrollToBottom {
  font-family: "Quicksand", sans-serif;
  position: fixed;
  right: 5px;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background-color: #f15a22;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#scrollToTop {
  bottom: 87px;
}

#scrollToBottom {
  bottom: 40px;
}

#scrollToTop:hover,
#scrollToBottom:hover {
  background-color: #f88a4b;
  transform: scale(1.1);
}
.text-container {
  display: flex;
  flex-direction: column;
}
.text-container .main-text,
.text-container .secondary-text {
  display: block;
}
.text-container .main-text {
  font-size: 14px;
}
.text-container .secondary-text {
  font-size: 12px;
  color: #666;
}
#switch-to-multi {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 70px;
  height: 40px;
  padding: 5px 10px;
  background-color: #e14d20;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: "Quicksand", sans-serif;
  transition: background-color 0.3s ease;
}

#switch-to-multi:hover {
  background-color: #e14d20;
}

.leaflet-top.leaflet-right {
  display: none;
}

#jayride-container-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#copyJayrideTable,
#copyJayrideTable2 {
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 90px;
  height: 30px;
  padding: 5px 10px;
  background-color: rgba(248, 249, 250, 0.427);
  color: #000;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  margin-bottom: 1px;
  font-family: "Quicksand", sans-serif;
  transition: background-color 0.3s ease;
}
#copyJayrideTable:hover,
#copyJayrideTable2:hover {
  background-color: rgba(248, 249, 250, 0.929);
}
#map {
  height: 100%;
  border: 1px solid #ccc;
  height: 400px;
  width: 1510px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.location-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.main-text {
  font-size: 16px;
  display: contents;
}

.secondary-text {
  font-size: 12px;
  display: contents;
}
body {
  font-family: "Quicksand", sans-serif;
  background-color: #f3e0d5;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
}

table {
  background-color: #ffffff;
  width: 100%;
  max-width: 910px;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  overflow: hidden;
  font-size: 14px;
  border: 2px solid #ddd;
  border-collapse: separate;
}
/* table tbody tr:last-of-type {
  border-bottom: 2px solid #E86826;
} */
table td.is-mtt {
  font-weight: 595;
  color: #e86826;
}
#placeholder-text {
  width: auto;
  border-radius: 15px;
  text-align: center;
  font-size: 16px;
  color: #333;
  height: 25px;
  background-color: rgba(248, 249, 250, 0.5);
  padding: 10px;
  line-height: 1.5;
}
th,
td {
  border: none;
  padding: 15px;
  text-align: left;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
td {
  height: 35px;
}
th {
  border-bottom: 2px solid #ddd;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  font-weight: 600;
  line-height: 28px;
  /* font-size: 12px; */
}

/* tr:nth-child(even) {
  background-color: #e9e9e9; 
} */
tr {
  border-bottom: 1px solid #ddd;
}
td:hover {
  color: #e86826;
  background-color: #ddd;
  border-radius: 5px;
}

#data-table td:nth-child(1),
#data-table td:nth-child(4),
#data-table td:nth-child(6),
#data-table td:nth-child(7),
#data-table td:nth-child(8) {
  text-align: center;
}

#data-table th:nth-child(2),
#data-table th:nth-child(3),
#data-table th:nth-child(5) {
  text-align: left;
}

#data-table td:nth-child(4),
#data-table td:nth-child(6) {
  width: 12%;
}
/* New capacity columns sizing */
#data-table td:nth-child(7),
#data-table td:nth-child(8) {
  width: 8%;
}

#data-table-elifelimo td:nth-child(1),
#data-table-elifelimo td:nth-child(4) {
  text-align: center;
}

#data-table-taxi2airport td:nth-child(1),
#data-table-taxi2airport td:nth-child(3) {
  text-align: center;
}

#data-table-mytransfers td:nth-child(1),
#data-table-mytransfers td:nth-child(3) {
  text-align: center;
}
#data-table-jayride td,
#data-table-jayride2 td {
  text-align: center;
}
#data-table-jayride th {
  border: 1px solid #ddd;
}

#data-table-route th:nth-child(1),
#data-table-route th:nth-child(2) {
  text-align: left;
}

#data-table-route td:nth-child(1),
#data-table-route td:nth-child(2) {
  width: 30%;
}
#data-table-route td:nth-child(3),
#data-table-route td:nth-child(4),
#data-table-route td:nth-child(5) {
  width: 15%;
}
#data-table-route td:nth-child(5) {
  text-align: center;
}

#data-table-route td:nth-child(3),
#data-table-route td:nth-child(4) {
  text-align: center;
}

.button-container-web {
  text-align: center;
  margin-top: 20px;
}

#refresh-button {
  padding: 10px 20px;
  background-color: #e14d20;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Quicksand", sans-serif;
}

#refresh-button:hover {
  background-color: #f88a4b;
}

.notification,
.warning {
  position: fixed;
  margin-top: 50px;
  font-size: 10px;
  transform: none;
  background-color: #00ba60;
  color: #fff;
  padding: 10px;
  border-radius: 15px;
  z-index: 1;
  font-family: "Quicksand", sans-serif;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.warning {
  background-color: #ffbb3b;
  color: #000;
}
.notification.show,
.warning.show {
  opacity: 1;
}
#notification-container {
  position: fixed;
  left: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  z-index: -1000;
  transition: opacity 0.5s ease-in-out;
}
#notification-container.show {
  opacity: 1;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: #f15a22;
}

::-webkit-scrollbar-thumb {
  background-color: #f15a22;
  border: 1px solid #555555;
}

.loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #e14d20;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

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

.flatpickr-calendar {
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.flatpickr-day {
  border-radius: 15px;
}

.flatpickr-day.today {
  border-color: #e14d20;
  border-radius: 15px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.flatpickr-day.today:hover {
  border-color: #e14d20;
  background: #e14d20;
  color: #fff;
}
.numInput {
  font-family: "Quicksand", sans-serif;
}

.flatpickr-day.selected,
.flatpickr-day.nextMonthDay.selected,
.flatpickr-day.prevMonthDay.selected {
  border-color: #e14d20;
  border-radius: 15px;
  background: #e14d20;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.flatpickr-day.selected:hover {
  background: #f88a4b;
  border-color: #f88a4b;
}
.flatpickr-today-button {
  font-family: "Quicksand", sans-serif;
  color: #fff;
  background: #e14d20;
  border: 2px solid #ffffff;
  border-radius: 20px;
  padding: 10px 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.flatpickr-today-button:hover {
  background: #f88a4b;
}
#date {
  width: 18%;
  cursor: pointer;
  background-image: url("icon/calendar.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 13px;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 920px;
  margin-top: 20px;
  border-collapse: collapse;
}

form label {
  display: none;
}

form input[type="text"],
form input[type="date"],
form input[type="time"],
form input[type="number"] {
  font-size: 13px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: auto;
  width: auto;
  font-family: "Quicksand", sans-serif;
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 15px;
  margin-bottom: 20px;
}

.icon-container {
  background-color: #fff;
  border: 3px solid #fff;
  position: absolute;
  right: 10px;
  top: 35%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.icon-container img {
  width: 100%;
  height: 100%;
}
form input[type="text"] {
  padding: 11px;
  width: 245px;
}

form input[type="date"] {
  padding: 10px;
  width: 110px;
}

form input[type="time"] {
  padding: 9px;
  width: 90px;
}

form button[type="submit"] {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px 11px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 40px;
  font-family: "Quicksand", sans-serif;
  transition: background-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="date"]:focus,
form input[type="time"]:focus,
form input[type="number"]:focus,
form select:focus {
  outline: 2px solid #f15a22;
}

form button[type="submit"] {
  color: #fff;
  background-color: #e14d20;
  width: 70px;
  height: 40px;
}
form button[type="multi"] {
  margin-right: 5px;
  color: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-color: rgba(248, 249, 250, 0.427);
  width: 35px;
  height: 40px;
}

form button[type="submit"]:hover {
  background-color: #f88a4b;
}
form button[type="multi"]:hover {
  background-color: #f88a4b;
}

form select {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: auto;
  font-family: "Quicksand", sans-serif;
  padding: 11px;
  border: 2px solid #ddd;
  border-radius: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
  width: 5%;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("icon/pax.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

form select option {
  font-size: 16px;
  font-weight: 400;
}

#genius {
  width: 16%; /* Adjust the width as needed */
  background-image: url("icon/genius.svg"); /* Change to the new icon */
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

form,
#data-table-route,
#data-table,
#data-table-elifelimo,
#data-table-mytransfers,
#data-table-jayride,
#data-table-jayride2,
#data-table-taxi2airport {
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
}
form {
  margin-bottom: -25px;
}

.autocomplete,
.normal {
  position: relative;
}

#location-list {
  border-radius: 15px;
  position: absolute;
  width: 98%;
  background: white;
  list-style: none;
  margin-top: -21.5px;
  margin-left: 1.5px;
  padding: 0;
  border: 0.1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: none;
}

#location-list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  border-radius: 15px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

#location-list li:hover {
  background-color: #f1f1f1;
}

#destination-list {
  border-radius: 15px;
  position: absolute;
  width: 98%;
  background: white;
  list-style: none;
  margin-top: -21.5px;
  margin-left: 1.5px;
  padding: 0;
  border: 0.1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: none;
}

#destination-list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  border-radius: 15px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

#destination-list li:hover {
  background-color: #f1f1f1;
}
#location-list,
#destination-list {
  z-index: 2;
}
#history-container {
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.controls-container {
  margin-top: -25px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 910px;
}
#history-dropdown {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  padding: 10px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  color: #333333;
  width: 100%;
  margin-left: 10px;
  box-sizing: border-box;
  margin-bottom: 3px;
}
#history-dropdown:focus {
  outline: 2px solid #f15a22;
}

#history-dropdown option {
  padding: 10px;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Quicksand", sans-serif;
}

label[for="toggle-switch"] {
  font-size: 1em;
  color: #333;
  margin-right: 4px;
  margin-left: 2px;
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #f88a4b;
}

input:focus + .slider {
  box-shadow: 0 0 1px #f88a4b;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}
.copy-icon {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}
footer {
  background-color: rgba(248, 249, 250, 0.5);
  color: #212529;
  text-align: center;
  padding: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: -5px;
  font-size: 10px;
}

#swap-button {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 15px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  background-image: url("icon/swap.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}

#swap-button:hover {
  background-color: #f88a4b;
}

.input-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#swap-button {
  margin: 0 5px;
  margin-bottom: 18px;
}

#sixt-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  display: none;
}

#sixt-url {
  display: inline-block;
  padding: 10px 20px;
  color: #e14d20;
  border: 2px solid #e14d20;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

#sixt-url:hover {
  background-color: #e14d20;
  color: #ffffff;
}

.spacer {
  height: 50px;
}

.table-name {
  margin: auto;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 2px;
  padding: 10px;
  background-color: rgba(248, 249, 250, 0.5);
  border-radius: 15px;
  width: 24%;
  box-sizing: border-box;
}

#route-container,
#booking-container,
#elifelimo-container,
#mytransfers-container,
#jayride-container,
#taxi2airport-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}

/* Checkbox styling (match Map Check look) */
.checkbox-container {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.checkbox-container input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  accent-color: #007bff;
  cursor: pointer;
  width: 14px;
  height: 14px;
}
.checkbox-container label,
.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.checkbox-inline {
  margin-top: -20px;
  margin-left: 5px;
  margin-right: 8px;
}