* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: 'Sometype Mono', monospace;
  text-decoration: none;
  scroll-behavior: smooth;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none; 
  -ms-user-select: none; 
}

*::-webkit-scrollbar {
  display: none;
  scroll-behavior: smooth;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: #000; /* Change the text color if needed */
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in input number for Firefox */
input[type=number] {
  appearance: text;
  -webkit-appearance: none; /* Chrome, Safari, newer versions of Opera */
  -moz-appearance: textfield;    /* Firefox */
  appearance: none;         /* Standard syntax */
}

input[type="file"] {
  opacity: 0;
}

/* This removes the default calendar and time icons in Chrome */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
}

/* Ensures all specified inputs do not show default appearance */
input[type="date"],
input[type="time"] {
  -webkit-appearance: none; /* Chrome, Safari, newer versions of Opera */
  -moz-appearance: none;    /* Firefox */
  appearance: none;         /* Standard syntax */
}

:root {
  /* ====>  Color variables  <==== */
  --rgba-white: 255,255,255;
  --white: #FFFFFF;
  --grey: #BBBBBB;
  --light: #E9F2F2;
  --neon: #1FFFFF;
  --dark: #009F9F;
  --black: #000000;
  --rgba-black: 0,0,0;
  --gradient: linear-gradient(35deg, var(--dark) 0%, var(--neon) 80%);
  --blackGradient: linear-gradient(35deg, var(--black) 30%, var(--black) 70%);
  --upDown: linear-gradient(0deg, transparent 0%, var(--neon) 100%);

  /* ====>  Box Shadow variables  <==== */
  --outset: 8px 8px 10px -1px rgba(10, 99, 169, 0.16),
  -5px -5px 10px -1px #ebeef1;
  --inset: inset 2px 2px 4px rgba(10, 99, 169, 0.25), 
  inset -2px -2px 4px rgba(233, 233, 233, 0.6);
  --shadow: 2px 2px 10px var(--light),
  -4px -4px 10px var(--light);
  --shadow2: 2px 1px 10px rgba(0,0,0, 0.25);

  /* ====>  Z-Index variables  <==== */
  --lvl0: -1;
  --lvl1: 1;
  --lvl2: 10;
  --lvl3: 100;
  --lvl4: 1000;
  --lvl5: 10000;
  --loader: 100000;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
}

body {
  display: flex;
  flex-direction: column;
  background: var(--light);
}

main {
  display: flex;
  flex: 1;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory; /* Enable snap scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}

main section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100vw;
  min-width: 100vw;
  height: auto;
  padding: 25px 25px 125px 25px;
  scroll-snap-align: start;
  font-size: 1rem;
}

main section.active .body {
  background: var(--white) !important;
  box-shadow: var(--outset) !important;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 50px;
  min-height: 50px;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--black);
  border: none;
  outline: none;
  box-shadow: var(--shadow2);
  background: var(--white);
  border-radius: 15px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

button i {
  font-weight: 100;
}

button:hover, button:active {
  color: var(--neon);
  transform: scale(0.98);
  border: 2px solid var(--neon);
  background: var(--black);
}

.message {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 200px;
  text-align: center;
  border-radius: 15px;
  background: transparent;
  margin: 10px auto;
  padding: 10px;
}

.message img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: bounce 5s infinite;
}

/* Define the bounce animation */
@keyframes bounce {
  0%, 20%, 55%, 80%, 100% {
      transform: translateY(0);
  }
  45% {
      transform: translateY(-20px);
  }
}

.message p {
  font-size: 0.8rem;
  color: var(--black);
}

.message a {
  font-size: 1rem;
  font-weight: bold;
  color: var(--neon);
  cursor: pointer;
  text-decoration: underline;
}


#payment-form {
  width: 100vw;
  height: 100vh;
  background: #FFFFFF !important;
  color: #000000 !important;
  z-index: var(--lvl1);
}









/* -----------------------------         Main (Loader)         ------------------------------------ */









.loader {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  opacity: 1;
  transition: background 1s ease-in, opacity 2s ease, backdrop-filter 1s ease-in;
  z-index: var(--loader);
}

.loader.change-background {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
}

.loader .load {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 0 35px 15px var(--white);
  transition: transform 1s ease-in-out;
}

.loader .load.scale-down {
transform: scale(0);
}

.loader .load img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 185px;
  height: 185px;
  border-radius: 50%;
  object-fit: contain;
  z-index: 106;
  transition: transform 1.5s ease-in-out;
}

.loader .load.scale-down img {
transform: scale(0);
}

.loader .load::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--white) 30%, var(--neon));
  border-radius: 50%;
  animation: rotate 1.5s linear infinite;
}

.loader .load::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--white);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.refresh-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--lvl5);
  transition: height 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.refresh-circle {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.refresh-circle i {
  font-size: 1.5rem;
  color: var(--dark);
}

.refresh-indicator.loading .refresh-circle {
  animation: rotate 1s linear infinite;
}








/* -----------------------------         Main (Pop Up)         ------------------------------------ */









.help-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(var(--rgba-black), 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  z-index: var(--lvl0);
  transition: 0.3s ease-in-out;
}

.help-box.active {
  opacity: 1;
  z-index: var(--lvl5);
}

.help-box .box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  height: auto;
  min-height: 250px;
  max-height: 80%;
  gap: 10px;
  padding: 10px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow2);
  overflow-y: auto;
}

.help-box .box .top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  min-height: 50px;
  gap: 15px;
  padding: 5px;
  border-bottom: 1px solid var(--grey);
}

.help-box .box .top h3 {
  width: 100%;
}

.help-box .box .top i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  background: var(--white);
  border-radius: 10px;
  border: 2px solid var(--grey);
  color: var(--grey);
  font-size: 2rem;
  margin-right: auto;
  z-index: var(--lvl5);
}

.help-box .box .top i:hover,
.help-box .box .top i:active {
  border: 2px solid var(--dark);
  color: var(--dark);
  cursor: pointer;
}

.help-box .box swiper-container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.help-box .box swiper-container swiper-slide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100%;
  gap: 10px;
  padding-bottom: 25px;
}

.help-box .box swiper-container swiper-slide .middle {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 250px;
  height: 200px;
  background: var(--light);
  border-radius: 10px;
  border: 2px solid var(--dark);
}

.help-box .box swiper-container swiper-slide .middle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  overflow: hidden;
}


.help-box .box swiper-container swiper-slide .bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.help-box .box swiper-container swiper-slide .bottom p {
  width: 100%;
  text-align: left;
  margin: 5px 0;
  font-size: 0.7rem;
}

.help-box .box swiper-container swiper-slide .bottom b {
  font-size: 900;
  font-size: 0.8rem;
}

/* Highlight the alert paragraph */
.help-box .box swiper-container swiper-slide .bottom p.alert {
  color: red; /* Red color for alert */
  font-weight: bold;
  background: #fdecea;
  padding: 10px;
  border-left: 5px solid red;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

/* Style the icon inside the alert */
.help-box .box swiper-container swiper-slide .bottom p.alert i {
  font-size: 20px;
  color: red;
}








/* -----------------------------         Main (Pop Up)         ------------------------------------ */









.popup-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(var(--rgba-black), 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  z-index: var(--lvl0);
  transition: 0.3s ease-in-out;
}

.popup-box.active {
  display: flex;
  opacity: 1;
  z-index: var(--lvl5);
}

.popup-box .popup {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 300px;
  height: auto;
  min-height: 200px;
  max-height: 80%;
  padding: 10px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow2);
  overflow-y: auto;
}

.popup-box .popup .go-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  min-height: 40px;
  gap: 15px;
  padding: 0 5px;
}

.popup-box .popup .go-back h3 {
  width: 100%;
}

.popup-box .popup .go-back i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  background: var(--white);
  border-radius: 10px;
  border: 3px solid var(--grey);
  color: var(--grey);
  font-size: 2rem;
  margin-right: auto;
  z-index: var(--lvl5);
}

.popup-box .popup .go-back i:hover,
.popup-box .popup .go-back i:active {
  border: 3px solid var(--dark);
  color: var(--dark);
  cursor: pointer;
}

.popup-box .popup .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  gap: 5px;
}

.popup-box .popup .list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  gap: 5px;
  padding: 10px 0;
}

.popup-box .popup .list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 50px;
  font-size: 0.8rem;
  padding: 0 10px;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}

.popup-box .popup .list li .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--grey);
}

.popup-box .popup .list li .text {
  padding-left: 15px;
}

.popup-box .popup .list li i {
  font-size: 1.5rem;
  cursor: pointer;
}

.popup-box .popup .list li:hover,
.popup-box .popup .list li:active {
  color: var(--dark);
  box-shadow: var(--inset);
  border-radius: 10px;
  transform: scale(0.98);
}

.popup-box .popup .list li:hover .icon,
.popup-box .popup .list li:active .icon {
  border-right: 1px solid var(--dark);
}

.popup-box .popup .input-box {
  position: relative;
  width: 100%;
  margin: 15px auto 0px auto;
  border-radius: 5px;
}

.popup-box .popup .select-box {
  position: relative;
  width: 100%;
  margin: 15px auto 0px auto;
  border-radius: 5px;
}

.popup-box .popup .input-box input,
.popup-box .popup .select-box select {
  height: 30px; /* Adjusted height for better alignment */
  padding: 0px 5px 0px 35px; /* Adjusted padding for readability */
  font-size: 0.85rem; /* Smaller font size to maintain readability */
  border: 1px solid var(--black);
  width: 100%;
  color: var(--black);
  font-weight: 300;
  border-radius: 5px;
  outline: none;
  cursor: text;
  overflow-x: hidden;
  transition: 0.5s ease;
}

.popup-box .popup .input-box span,
.popup-box .popup .select-box span {
  position: absolute;
  left: 0;
  padding: 8px 10px 0px 35px;
  pointer-events: none;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  color: var(--black);
  transition: 0.5s ease;
}

.popup-box .popup .input-box input:focus,
.popup-box .popup .select-box select:focus{
  color: var(--black) !important;
}

.popup-box .popup .input-box input:invalid,
.popup-box .popup .select-box select:invalid {
  color: transparent;
}

.popup-box .popup .input-box input:valid ~ span,
.popup-box .popup .input-box input:focus ~ span,
.popup-box .popup .select-box select:valid ~ span,
.popup-box .popup .select-box select:focus ~ span {
  color: var(--dark);
  background: var(--white);
  transform: translate(20px, -12px);
  border-radius: 3px;
  font-size: 0.8rem;
  padding: 0 8px;
}

.popup-box .popup .bottom .input-box input:focus ~ span,
.popup-box .popup .bottom .input-box input:valid ~ span {
  background: var(--white);
  color: var(--white);
  font-weight: bold;
}

.popup-box .popup .input-box i,
.popup-box .popup .select-box i {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--black);
  padding-right: 5px;
  border-right: 2px solid var(--black);
  transition: 0.3s ease;
}

.popup-box .popup .input-box input:valid ~ i,
.popup-box .popup .input-box input:focus ~ i,
.popup-box .popup .input-box input:hover ~ i,
.popup-box .popup .select-box select:valid ~ i,
.popup-box .popup .select-box select:focus ~ i,
.popup-box .popup .select-box select:hover ~ i {
  color: var(--dark);
  border-right: 2px solid var(--dark);
}

.popup-box .popup .input-box input:valid,
.popup-box .popup .input-box input:focus,
.popup-box .popup .input-box input:hover,
.popup-box .popup .select-box select:valid,
.popup-box .popup .select-box select:focus,
.popup-box .popup .select-box select:hover {
  border: 2px solid var(--dark);
}

/* Department Dropdown Specific Styling */
.popup-box .popup .select-box select {
  padding-right: 30px; /* Space for the arrow */
  background-size: 12px;
  font-size: 0.85rem; /* Smaller font size for readability */
}

.popup-box .popup button {
  margin: 15px auto;
  height: 40px;
  min-height: 40px;
  border-radius: 10px;
}

/* ... (Your existing CSS code) ... */

/* Department Dropdown Specific Styling */
.popup-box .popup .select-box select {
  padding-right: 30px; /* Space for the custom arrow */
  background-size: 12px;
  font-size: 0.85rem; /* Smaller font size for readability */

  /* --- NEW / ADJUSTED STYLES FOR SELECT ARROW --- */
  /* Remove default browser arrow */
  -webkit-appearance: none; /* For Chrome, Safari, Opera */
  -moz-appearance: none;    /* For Firefox */
  appearance: none;         /* Standard property */

  /* Add a custom SVG arrow for consistency */
  /* The SVG is a simple down-arrow. You can replace this with your own SVG or an image. */
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" style="color:var(--black);"><path d="M7 10l5 5 5-5H7z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center; /* Position the custom arrow */
  background-size: 12px; /* Adjust size of your custom arrow if needed */
  cursor: pointer; /* Change cursor from text to pointer for select elements */
}

/* Ensure the custom arrow color changes on focus/hover, matching the icon color */
.popup-box .popup .select-box select:valid,
.popup-box .popup .select-box select:focus,
.popup-box .popup .select-box select:hover {
    border: 2px solid var(--dark); /* This is already present, but good to re-iterate */
    /* Change the color of the background SVG arrow on hover/focus */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" style="color:var(--dark);"><path d="M7 10l5 5 5-5H7z"/></svg>');
}

/* --- OPTIONAL: Adjust the cursor for all input/select elements to be consistent --- */
.popup-box .popup .input-box input,
.popup-box .popup .select-box select {
    /* Your existing styles */
    cursor: auto; /* For inputs, 'auto' or 'text' is typical. */
    /* We've already set cursor: pointer for select specifically above. */
}

.popup-box .popup .go-back h3 {
    width: 100%; /* Ensures it takes available space */
    text-align: center; /* Center the heading if desired */
    /* Add any other text styling like font-size, color, margin, etc. */
    font-size: 1.2rem; /* Example */
    color: var(--dark); /* Example */
    margin: 0;
}









/* -----------------------------         Main (Home)         ------------------------------------ */









/*      >>>     Home (Header)     <<<*/









#home .header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 75px;
}

#home .header ul {
  display: flex;
  width: 400px;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}

#home .header ul li {
  width: 100%;
  text-align: center;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

#home .header ul li:hover,
#home .header ul li.active {
  cursor: pointer;
  color: var(--dark);
  transition: 0.2s ease-in-out;
  border-bottom: 2px solid var(--dark);
}









/*      >>>     Home (Body)     <<<*/










#home .body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  flex: 1;
  background: var(--light);
  border-radius: 15px;
  box-shadow: none;
  transition: 0.5s ease-out;
  transition-delay: 0.5s;
  overflow: auto;
}

#home .body .page {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 5px;
  gap: 5px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.2s ease-in-out;
}

#home .body .page.active {
  opacity: 1;
  transform: scale(1);
}









/*      >>>     Home (Body: Todays Trip)     <<<*/









#home .body #today {
  gap: 10px;
}

#home .body #today .top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  height: auto;
  min-height: 50px;
  width: 250px;
  gap: 10px;
}

#home .body #today .top h1 {
  width: 100%;
  text-align: center;
  padding: 5px 0;
  border-bottom: 2px solid var(--black);
}

#home .body #today .top p {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  font-size: 0.9rem;
  letter-spacing: 0.01rem;
  width: 100%;
}

#home .body #today .top p span.Pending {
  color: orangered;
  font-weight: bold;
}

#home .body #today .middle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  height: 90px;
  min-height: 40px;
  width: 300px;
  max-width: fit-content;
  padding: 15px 0px 0;
  gap: 5px;
  transition: height 0.3s ease-in-out, padding 0.3s ease-in-out; /* Smooth transition for height and padding */
  overflow: hidden;
}

#home .body #today .middle.active {
  height: 265px; /* Expanded height */
  padding: 0px 10px; /* Slightly increased padding */
  overflow-y: auto;
}

#home .body #today .middle p {
  width: 100%;
  text-align: left;
  font-size: 0.8rem;
}

#home .body #today .middle .flex-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  gap: 5px;
  padding: 0 10px;
}

#home .body #today .middle .toggle-box {
  display: flex;
  align-items: center;
  width: 200px;
  gap: 12px;
  margin: 5px 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: #333;
  user-select: none;
  cursor: pointer;
}

/* Hide Default Checkbox */
#home .body #today .middle .toggle-box input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

/* Toggle Switch Container */
#home .body #today .middle .toggle-box .toggle-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 42px;
  height: 24px;
}

/* Toggle Background */
#home .body #today .middle .toggle-box .toggle-wrapper label {
  width: 42px;
  height: 24px;
  background: var(--black);
  border-radius: 12px;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
  display: block;
  position: relative;
}

/* Toggle Knob */
#home .body #today .middle .toggle-box .toggle-wrapper label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Checkbox Checked - Active State */
#home .body #today .middle .toggle-box input[type="checkbox"]:checked + label {
  background: var(--white);
  box-shadow: var(--inset);
}

/* Move Toggle Knob When Checked */
#home .body #today .middle .toggle-box input[type="checkbox"]:checked + label::before {
  transform: translateX(18px);
}

#home .body #today .middle .box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  width: 200px;
  gap: 5px;
}

#home .body #today .middle .box i {
  font-size: 2rem;
  cursor: pointer;
}

#home .body #today .middle .box i:hover,
#home .body #today .middle .box i:active {
  color: var(--dark);
}

#home .body #today .middle .select-box {
  width: 100%;
  max-width: 200px;
}

#home .body #today .middle .select-box select {
  width: 100%;
  max-width: 200px;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid var(--black);
  border-radius: 5px;
  text-align: left;
  font-weight: bold;
  font-size: 0.8rem !important;
}

#home .body #today .middle .select-box select:focus {
  outline: 1px solid var(--dark);
  border: 1px solid var(--dark);
}

#home .body #today .middle .select-box select option {
  padding: 5px;
}









/*      >>>     Home (Body: Upcoming Trip)     <<<*/









#home .body #upcoming {
  justify-content: flex-start;
}

#home .body #upcoming .top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 65px;
  gap: 10px;
  padding: 10px 0;
  color: var(--white);
  border-radius: 10px;
}

#home .body #upcoming .top .input-box {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}

#home .body #upcoming .select-box {
  position: relative;
  width: 100px;
  min-width: fit-content;
  margin: 0 auto;
  border-radius: 10px;
  background: var(--white);
}

#home .body #upcoming .top .input-box input,
#home .body #upcoming .select-box select,
#home .body #upcoming .top .select-box input {
  padding: 12px 0px 8px 42px;
  border: none;
  width: 100%;
  color: var(--black);
  border: none;
  background: transparent;
  font-weight: 300;
  font-size: 1rem;
  border-radius: 0px;
  border-bottom: 2px solid var(--grey);
  outline: none;
  cursor: text;
  transition: 0.2s ease-in-out;
}

#home .body #upcoming .bottom .select-box select {
  padding: 5px 0px 5px 35px;
}

#home .body #upcoming .select-box select,
#home .body #upcoming .top .select-box input {
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid var(--grey);
}

#home .body #upcoming .top .select-box input {
  border: 2px solid var(--white) !important;
}

#home .body #upcoming .top .input-box .date,
#home .body #upcoming .top .input-box input::placeholder,
#home .body #upcoming .top .select-box select,
#home .body #upcoming .top .select-box input {
  color: transparent;
  font-size: 0.8rem;
}

#home .body #upcoming .select-box select:valid,
#home .body #upcoming .select-box select:focus,
#home .body #upcoming .top .select-box input:valid,
#home .body #upcoming .top .select-box input:focus {
  color: var(--black);
  border: 2px solid var(--dark);
}

#home .body #upcoming .top .input-box input:hover,
#home .body #upcoming .top .input-box input:focus,
#home .body #upcoming .top .input-box input:valid {
  border-bottom: 2px solid var(--dark);
}

#home .body #upcoming .top .input-box span,
#home .body #upcoming .select-box span {
  position: absolute;
  left: 0;
  padding: 12px 10px 8px 42px;
  pointer-events: none;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: var(--grey);
  transition: 0.5s ease;
}

#home .body #upcoming .top .input-box input:focus::placeholder,
#home .body #upcoming .top .input-box input:focus::placeholder {
  color: var(--white);
}

#home .body #upcoming .top .input-box input:valid ~ span,
#home .body #upcoming .top .input-box input:focus ~ span,
#home .body #upcoming .select-box select:valid ~ span,
#home .body #upcoming .select-box select:focus ~ span,
#home .body #upcoming .top .select-box input:focus ~ span,
#home .body #upcoming .top .select-box input:valid ~ span {
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--dark);
  transform: translate(15px, -12px);
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 0 8px;
}

#home .body #upcoming .top .input-box input:valid ~ span,
#home .body #upcoming .top .input-box input:focus ~ span,
#home .body #upcoming .top .select-box input:focus ~ span,
#home .body #upcoming .top .select-box input:valid ~ span {
  border: 2px solid var(--white);
}

#home .body #upcoming .top .input-box i,
#home .body #upcoming .select-box i {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  padding: 2px 0;
  padding-right: 8px;
  color: var(--grey);
  font-size: 1rem;
  border-right: 2px solid var(--grey);
  transition: 0.3s ease;
}

#home .body #upcoming .bottom .select-box i {
  top: 8px;
}

#home .body #upcoming .top .input-box input:valid ~ i,
#home .body #upcoming .top .input-box input:focus ~ i,
#home .body #upcoming .top .input-box input:hover ~ i,
#home .body #upcoming .select-box select:valid ~ i,
#home .body #upcoming .select-box select:focus ~ i,
#home .body #upcoming .select-box select:hover ~ i,
#home .body #upcoming .top .select-box input:hover ~ i,
#home .body #upcoming .top .select-box input:focus ~ i,
#home .body #upcoming .top .select-box input:valid ~ i {
  color: var(--dark);
  border-right: 2px solid var(--dark);
}

#home .body #upcoming .bottom {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 5px;
  z-index: var(--lvl1);
}

#home .body #upcoming .bottom li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 65px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 85px;
  min-height: 85px;
  gap: 5px;
  padding: 10px;
  font-size: 1rem;
  border-bottom: 1px solid var(--grey);
}

#home .body #upcoming .bottom li.inactive {
  opacity: 0.4;
}

#home .body #upcoming .bottom li p {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 150px;
  font-size: 0.8rem;
  text-align: center;
}

#home .body #upcoming .bottom li.headings {
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--lvl2);
  align-items: center;
  width: 100%;
  height: 50px;
  min-height: 50px;
  background: var(--upDown);
  color: var(--black);
  border-bottom: 0px solid var(--dark);
  padding: 0 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: bold;
  cursor: default;
}

#home .body #upcoming .bottom li div {
  margin: 0 auto;
}

#home .body #upcoming .bottom li input {
  width: 100px;
  height: auto;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  outline: none;
  background: transparent;
  border: 2px solid transparent;
}

#home .body #upcoming .bottom li input:valid {
  border: 2px solid var(--black);
}

#home .body #upcoming .bottom li input:focus {
  border: 2px solid var(--neon);
}

#home .body #upcoming .bottom li .btns {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  font-size: 1.1rem;
}

#home .body #upcoming .bottom li .btns i:hover,
#home .body #upcoming .bottom li .btns i:active {
  color: var(--dark);
  cursor: pointer;
}









/*      >>>     Home (Body: Recent Trip)     <<<*/









#home .body #recent {
  justify-content: space-between;
}

#home .body #recent .top {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 50px;
  gap: 10px;
  color: var(--white);
  border-radius: 10px;
}

#home .body #recent .top button {
  width: 100%;
  height: 40px;
  min-height: 40px;
  box-shadow: none;
}

#home .body #recent .top .input-box {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}

#home .body #recent .select-box {
  position: relative;
  width: 100%;
  min-width: fit-content;
  margin: 0 !important;
  border-radius: 10px;
  background: var(--white);
}

#home .body #recent .top .input-box input,
#home .body #recent .select-box select,
#home .body #recent .top .select-box input {
  padding: 12px 0px 8px 42px;
  border: none;
  width: 100%;
  min-width: 100%;
  color: var(--black);
  border: none;
  background: transparent;
  font-weight: 300;
  font-size: 1rem;
  border-radius: 0px;
  border-bottom: 2px solid var(--grey);
  outline: none;
  cursor: text;
  transition: 0.2s ease-in-out;
}

#home .body #recent .select-box select,
#home .body #recent .top .select-box input {
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid var(--grey);
}

#home .body #recent .bottom .select-box select {
  padding: 5px 0px 5px 30px;
  z-index: var(--lvl3);
}

#home .body #recent .top .select-box input {
  border: 2px solid var(--white) !important;
}

#home .body #recent .top .input-box .date,
#home .body #recent .top .input-box input::placeholder,
#home .body #recent .select-box select,
#home .body #recent .top .select-box input {
  color: transparent;
  font-size: 0.8rem;
}

#home .body #recent .select-box select:valid,
#home .body #recent .select-box select:focus,
#home .body #recent .top .select-box input:valid,
#home .body #recent .top .select-box input:focus {
  color: var(--black);
  border: 2px solid var(--dark);
}

#home .body #recent .top .input-box input:hover,
#home .body #recent .top .input-box input:focus,
#home .body #recent .top .input-box input:valid {
  border-bottom: 2px solid var(--dark);
}

#home .body #recent .top .input-box span,
#home .body #recent .top .select-box span {
  position: absolute;
  left: 0;
  padding: 12px 10px 8px 42px;
  pointer-events: none;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: var(--grey);
  transition: 0.5s ease;
}

#home .body #recent .top .input-box input:focus::placeholder,
#home .body #recent .top .input-box input:focus::placeholder {
  color: var(--white);
}

#home .body #recent .top .input-box input:valid ~ span,
#home .body #recent .top .input-box input:focus ~ span,
#home .body #recent .select-box select:valid ~ span,
#home .body #recent .select-box select:focus ~ span,
#home .body #recent .top .select-box input:focus ~ span,
#home .body #recent .top .select-box input:valid ~ span {
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--dark);
  transform: translate(15px, -12px);
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 0 8px;
}

#home .body #recent .top .input-box input:valid ~ span,
#home .body #recent .top .input-box input:focus ~ span,
#home .body #recent .top .select-box input:focus ~ span,
#home .body #recent .top .select-box input:valid ~ span {
  border: 2px solid var(--white);
}

#home .body #recent .top .input-box i,
#home .body #recent .select-box i {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  padding: 2px 0;
  padding-right: 8px;
  color: var(--grey);
  font-size: 1rem;
  border-right: 2px solid var(--grey);
  transition: 0.3s ease;
}

#home .body #recent .bottom .select-box i {
  top: 6px;
  left: 6px;
}

#home .body #recent .bottom .morning:not(.headings .morning),
#home .body #recent .bottom .afternoon:not(.headings .afternoon) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 50px;
  height: auto;
  min-height: 50px;
  margin-top: 15px;
  gap: 10px;
}

#home .body #recent .top .input-box input:valid ~ i,
#home .body #recent .top .input-box input:focus ~ i,
#home .body #recent .top .input-box input:hover ~ i,
#home .body #recent .select-box select:valid ~ i,
#home .body #recent .select-box select:focus ~ i,
#home .body #recent .select-box select:hover ~ i,
#home .body #recent .top .select-box input:hover ~ i,
#home .body #recent .top .select-box input:focus ~ i,
#home .body #recent .top .select-box input:valid ~ i {
  color: var(--dark);
  border-right: 2px solid var(--dark);
}

#home .body #recent .bottom {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  /* height: 100%; */
  gap: 5px;
  z-index: var(--lvl1);
}

#home .body #recent .bottom li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 55px;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  /* height: 85px; */
  min-height: 85px;
  gap: 5px;
  padding: 10px 0;
  font-size: 1rem;
  z-index: var(--lvl2);
  border-bottom: 1px solid var(--grey);
  transition: 0.2s ease-in-out;
}

#home .body #recent .bottom li.inactive {
  opacity: 0.4;
}

#home .body #recent .bottom li p {
  position: absolute;
  top: 5px;
  left: -5px;
  width: 150px;
  font-size: 0.8rem;
  text-align: center;
}

#home .body #recent .bottom li.headings {
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--lvl4);
  align-items: flex-start;
  width: 100%;
  background: var(--upDown);
  color: var(--black);
  border-bottom: 0px solid var(--dark);
  height: 50px;
  min-height: 50px;
  padding: 10px;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: default;
}

#home .body #recent .bottom li div {
  margin: 0 auto;
}

#home .body #recent .bottom li input {
  width: 100px;
  height: auto;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  outline: none;
  background: transparent;
  border: 2px solid transparent;
}

#home .body #recent .bottom li input:valid {
  border: 2px solid var(--black);
}

#home .body #recent .bottom li input:focus {
  border: 2px solid var(--neon);
}

#home .body #recent .bottom li .btns {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  font-size: 1.1rem;
}

#home .body #recent .bottom li .btns i:hover,
#home .body #recent .bottom li .btns i:active {
  color: var(--dark);
  cursor: pointer;
}


/* Basic Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.modal-content select,
.modal-content input[type="text"] {
    width: calc(100% - 22px); /* Account for padding and border */
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.modal-buttons {
    text-align: right;
    margin-top: 20px;
}

.modal-buttons button {
    padding: 10px 20px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#modal-save-changes {
    background-color: #4CAF50; /* Green */
    color: white;
}

#modal-cancel-changes {
    background-color: #f44336; /* Red */
    color: white;
}










/*      >>>     Home (Body: Shuttle List)     <<<*/









#home .body #shuttleList {
  justify-content: flex-start;
}

#home .body #shuttleList .top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 125px;
  gap: 25px;
  color: var(--white);
  border-radius: 10px;
}

#home .body #shuttleList .top .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  gap: 5px;
}

#home .body #shuttleList .top .input-box {
  position: relative;
  width: 100%;
  min-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}

#home .body #shuttleList .top .select-box {
  position: relative;
  width: 100%;
  min-width: fit-content;
  margin: 0 auto;
  border-radius: 10px;
  background: var(--white);
}

#home .body #shuttleList .top .totals {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: auto;
  font-size: 0.9rem;
  gap: 5px;
  margin-top: -10px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 5px;
  z-index: var(--lvl5);
  color: var(--black);
}

#home .body #shuttleList .top .input-box input,
#home .body #shuttleList .top .select-box select,
#home .body #shuttleList .top .select-box input {
  padding: 12px 0px 8px 42px;
  border: none;
  width: 100%;
  color: var(--black);
  border: none;
  background: transparent;
  font-weight: 300;
  font-size: 1rem;
  border-radius: 0px;
  border-bottom: 2px solid var(--grey);
  outline: none;
  cursor: text;
  transition: 0.2s ease-in-out;
}

#home .body #shuttleList .top .select-box select,
#home .body #shuttleList .top .select-box input {
  border-radius: 10px;
  cursor: pointer;
  padding: 12px 0px 8px 42px;
  border: 2px solid var(--grey);
}

#home .body #shuttleList .top .input-box .date,
#home .body #shuttleList .top .input-box input::placeholder,
#home .body #shuttleList .top .select-box select,
#home .body #shuttleList .top .select-box input {
  color: transparent;
  font-size: 0.8rem;
}

#home .body #shuttleList .top .select-box select:valid,
#home .body #shuttleList .top .select-box select:focus,
#home .body #shuttleList .top .select-box input:valid,
#home .body #shuttleList .top .select-box input:focus {
  color: var(--black);
  border: 2px solid var(--dark);
}

#home .body #shuttleList .top .input-box input:hover,
#home .body #shuttleList .top .input-box input:focus,
#home .body #shuttleList .top .input-box input:valid {
  border-bottom: 2px solid var(--dark);
}

#home .body #shuttleList .top .input-box span,
#home .body #shuttleList .top .select-box span {
  position: absolute;
  left: 0;
  padding: 12px 10px 8px 42px;
  pointer-events: none;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: var(--grey);
  transition: 0.5s ease;
}

#home .body #shuttleList .top .input-box input:focus::placeholder,
#home .body #shuttleList .top .input-box input:focus::placeholder {
  color: var(--white);
}

#home .body #shuttleList .top .input-box input:valid ~ span,
#home .body #shuttleList .top .input-box input:focus ~ span,
#home .body #shuttleList .top .select-box select:valid ~ span,
#home .body #shuttleList .top .select-box select:focus ~ span,
#home .body #shuttleList .top .select-box input:focus ~ span,
#home .body #shuttleList .top .select-box input:valid ~ span {
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--dark);
  transform: translate(10px, -12px);
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 0 8px;
}


#home .body #shuttleList .top .input-box input:valid ~ span,
#home .body #shuttleList .top .input-box input:focus ~ span {
  border: 2px solid transparent;
}

#home .body #shuttleList .top .input-box i,
#home .body #shuttleList .top .select-box i {
  position: absolute;
  top: 12px;
  left: 10px;
  width: 25px;
  padding: 2px 0;
  padding-right: 8px;
  color: var(--grey);
  font-size: 1rem;
  border-right: 2px solid var(--grey);
  transition: 0.3s ease;
}

#home .body #shuttleList .top .input-box input:valid ~ i,
#home .body #shuttleList .top .input-box input:focus ~ i,
#home .body #shuttleList .top .input-box input:hover ~ i,
#home .body #shuttleList .top .select-box select:valid ~ i,
#home .body #shuttleList .top .select-box select:focus ~ i,
#home .body #shuttleList .top .select-box select:hover ~ i,
#home .body #shuttleList .top .select-box input:hover ~ i,
#home .body #shuttleList .top .select-box input:focus ~ i,
#home .body #shuttleList .top .select-box input:valid ~ i {
  color: var(--dark);
  border-right: 2px solid var(--dark);
}

#home .body #shuttleList .bottom {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 5px;
  z-index: var(--lvl1);
  overflow-y: auto;
}

#home .body #shuttleList .bottom li {
  display: grid;
  grid-template-columns: 1fr 50px 75px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 50px;
  gap: 5px;
  padding: 0 10px;
  font-size: 1rem;
  border-bottom: 1px solid var(--grey);
  cursor: pointer;
}

#home .body #shuttleList .bottom li:not(#home .body #shuttleList .bottom li.headings):hover {
  border-bottom: 1px solid var(--neon);
}

#home .body #shuttleList .bottom li.headings {
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--lvl2);
  display: flex;
  grid-template-columns: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--upDown);
  color: var(--black);
  border-bottom: 0px solid var(--dark);
  padding: 0 10px;
  font-weight: bold;
  cursor: default;
}

#home .body #shuttleList .bottom li.headings .name {
  width: 100%;
}

#home .body #shuttleList .bottom li.headings .pickup {
  min-width: 75px;
  max-width: 75px;
  margin: 0 auto;
  text-align: center;
}

#home .body #shuttleList .bottom li .name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#home .body #shuttleList .bottom li .name.crossed {
  text-decoration: line-through;
  text-decoration-color: var(--dark);
  text-decoration-thickness: 2px;
}

#home .body #shuttleList .bottom li div:not(:nth-child(1)) {
  margin: 0 auto;
}

#home .body #shuttleList .bottom li:not(.headings) .you {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
  margin: 0 auto;
  border-radius: 25% / 55%;
  transition: 0.3s ease-in-out;
  background: transparent;
  color: var(--dark);
  font-weight: bold;
  text-shadow: var(--shadow2);
  border: 2px solid var(--dark);
  text-shadow: var(--shadow2);
}









/* -----------------------------         Main (Book)         ------------------------------------ */









/*      >>>     Book (Header)     <<<*/









#book .header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 0px;
  min-height: 0px;
  padding: 0px;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease, 0.5s ease-out;
}

#book .header.active {
  opacity: 1;
  height: auto;
  min-height: 75px;
}

#book .header .top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

#book .header .top .title {
  font-size: 2rem;
  padding: 0 10px 0 0;
  text-align: left;
}

#book .header .top .subtitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  letter-spacing: 5px;
  font-size: 1rem;
  text-align: left;
  padding: 0 0 0 10px;
  border-left: 2px solid var(--dark);
}

#book .header button {
  width: 200px;
  max-width: 200px;
}

#book .header button i {
  background: transparent;
  font-weight: bold;
  font-size: 1rem;
}

#book .header button i:hover,
#book .header button i:active {
  width: 0;
  height: 0;
  color: var(--neon);
  background: transparent;
}

#book .header i {
  background: var(--white);
  font-size: 1.5rem;
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  cursor: pointer;
}

#book .header i:hover {
  background: var(--neon);
  color: var(--white);
}

#book .header h5 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: center;
  color: var(--black);
}









/*      >>>     Home (Body)     <<<*/









#book .body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--light);
  border-radius: 15px;
  box-shadow: none;
  overflow-y: scroll !important;
  transition: 0.5s ease-out;
  transition-delay: 0.5s;
}

#book .body .page {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 5px;
  padding: 5px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.2s ease-in-out;
}

#book .body .page.active {
  opacity: 1;
  transform: scale(1);
}

#book .body .page .go-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  background: var(--white);
  border-radius: 10px;
  border: 3px solid var(--grey);
  color: var(--grey);
  font-size: 2rem;
  margin-left: 10px;
  margin-top: 10px;
  z-index: var(--lvl5);
  justify-self: flex-start;
  align-self: flex-start;
}

#book .body .page .go-back i {
  font-size: 1.6rem;
  transition: 0.3s ease;
}

#book .body .page .go-back:hover,
#book .body .page .go-back:active {
  border: 3px solid var(--dark);
  color: var(--dark);
  cursor: pointer;
}









/*      >>>     Book (Body: Calendar)     <<<*/









#book .body #calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  min-height: 50px;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
  color: var(--dark);
  background: var(--upDown);
}

#book .body #calendar .days .day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% ;
  min-width: 100% ;
  font-size: 1rem;
  color: var(--black);
}

/* Dates styling */
#book .body #calendar .dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  overflow: hidden; /* Prevents content overflow */
}

#book .body #calendar .dates .date {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 20px;
  margin: 0 auto;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Hover effect on dates */
#book .body #calendar .dates .date:not(.non):hover,
#book .body #calendar .dates .date.selected {
  color: var(--light);
  background: var(--upDown);
  text-shadow: var(--shadow2);
}

/* Active date style */
#book .body #calendar .dates .date.active {
  color: var(--dark);
  text-decoration: underline;
}

/* Selected date */
#book .body #calendar .dates .date.selected {
  background: var(--black);
  color: var(--neon);
  border-radius: 15px;
}

#book .body #calendar .dates .date.non {
  color: transparent;
  pointer-events: none;
}

#book .body #calendar .dates .date.non,
#book .body #calendar .dates .date.disabled {
  color: var(--grey);
  cursor: not-allowed;
}

#book .body #calendar .dates .date .spans {
  position: absolute;
  bottom: 3px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 10px;
}

#book .body #calendar .dates .date .spans span {
  width: 4px;
  height: 4px;
  background: transparent;
  border-radius: 50%;
}

#book .body #calendar .dates .date .spans span.on {
  background: var(--neon);
}

#book .body .spans span.off {
  background: red;
}

#book .body #headings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Automatically fit items */
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: min-content;
  align-items: center;
}

#book .body #headings li {
  position: relative;
  display: flex;
  grid-template-columns: 150px 1fr 20px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-width: 100%;
  height: 250px;
  min-height: 250px;
  flex-direction: column;
  gap: 5px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(0deg, transparent -15%, transparent 100%);;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.1s ease-in-out;
  left: 0;
}

#book .body #headings li:active {
  background: var(--upDown);
}

#book .body #headings {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}









/*      >>>     Book (Body: Booking Info)     <<<*/










#book .body #bookingInfo .middle {
  display: flex; 
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 10px 10px 20px;
}

#book .body #bookingInfo .middle .group {
  width: 100%;
  padding: 0px 0px 20px !important;
}

#book .body #bookingInfo .middle .toggle-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease-in-out;
}

#book .body #bookingInfo .middle .toggle-btn i {
  transition: transform 0.3s ease-in-out;
}

/* Collapsible Content */
#book .body #bookingInfo .middle .collapsible {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 0;
  width: 100%;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
  padding: 0 15px;
  gap: 10px;
  border-radius: 5px;
}

#book .body #bookingInfo .middle .collapsible.active {
  max-height: 200px;
  padding: 15px;
}

/* Rotate Icon When Active */
#book .body #bookingInfo .middle .toggle-btn.active i {
  transform: rotate(180deg);
}

#book .body #bookingInfo .middle .select-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px;
  margin: 8px auto;
  border-radius: 10px;
  background: var(--white);
}

#book .body #bookingInfo .middle .select-box select,
#book .body #bookingInfo .middle .select-box input {
  padding: 12px 0px 8px 42px;
  border: none;
  width: 100%;
  color: var(--black);
  border: none;
  background: transparent;
  font-weight: 300;
  font-size: 1rem;
  border-radius: 0px;
  border-bottom: 2px solid var(--black);
  outline: none;
  cursor: text;
  transition: 0.2s ease-in-out;
}

#book .body #bookingInfo .middle .select-box select,
#book .body #bookingInfo .middle .select-box input {
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid var(--black);
}

#book .body #bookingInfo .middle .select-box input {
  border: 2px solid var(--white) !important;
}

#book .body #bookingInfo .middle .select-box select,
#book .body #bookingInfo .middle .select-box input {
  color: transparent;
  font-size: 0.8rem;
}

#book .body #bookingInfo .middle .select-box select:valid,
#book .body #bookingInfo .middle .select-box select:focus,
#book .body #bookingInfo .middle .select-box input:valid,
#book .body #bookingInfo .middle .select-box input:focus {
  color: var(--black);
  border: 2px solid var(--dark);
}

#book .body #bookingInfo .middle .select-box span {
  position: absolute;
  width: fit-content;
  left: 0;
  padding: 12px 10px 8px 42px;
  pointer-events: none;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: var(--black);
  transition: 0.5s ease;
}

#book .body #bookingInfo .middle .select-box select:valid ~ span,
#book .body #bookingInfo .middle .select-box select:focus ~ span,
#book .body #bookingInfo .middle .select-box input:focus ~ span,
#book .body #bookingInfo .middle .select-box input:valid ~ span {
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--dark);
  transform: translate(15px, -23px);
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 0 8px;
}

#book .body #bookingInfo .middle .select-box input:focus ~ span,
#book .body #bookingInfo .middle .select-box input:valid ~ span {
  border: 2px solid var(--white);
}

#book .body #bookingInfo .middle .select-box i {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  padding: 2px 0;
  padding-right: 8px;
  color: var(--black);
  font-size: 1rem;
  border-right: 2px solid var(--black);
  transition: 0.3s ease;
}

#book .body #bookingInfo .middle .select-box select:valid ~ i,
#book .body #bookingInfo .middle .select-box select:focus ~ i,
#book .body #bookingInfo .middle .select-box select:hover ~ i,
#book .body #bookingInfo .middle .select-box input:hover ~ i,
#book .body #bookingInfo .middle .select-box input:focus ~ i,
#book .body #bookingInfo .middle .select-box input:valid ~ i {
  color: var(--dark);
  border-right: 2px solid var(--dark);
}















/* -----------------------------         Main (Pay)         ------------------------------------ */









/*      >>>     Pay (Head)     <<<*/









#pay .header {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 0px;
  min-height: 0px;
  padding: 0px;
  border-radius: 15px;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease, 0.5s ease-out;
}

#pay .header.active {
  opacity: 1;
  height: auto;
  min-height: 75px;
  padding: 0 10px;
}

#pay .header .top {
  display: flex;
  width: 200px;
  height: 60px;
  min-height: 50px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 30px;
}

#pay .header .top i {
  padding: 5px;
  font-size: 1.8rem;
  border: 2px solid var(--black);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

#pay .header .top i:hover,
#pay .header .top i:active {
  /*box-shadow: var(--inset);*/
  background: var(--black);
  color: var(--neon);
  border: 2px solid var(--neon);
}

#tripAmount {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 50px;
  justify-content: center;
  align-items: center;
}

#tripAmount h6 {
  font-size: 0.6rem;
}

#pay .header .top h5 {
  font-size: 1.5rem;
} 

#pay .header p {
  position: absolute;
  bottom: 18px;
  right: 85px;
}

#pay .header .bottom button {
  max-width: 125px;
  min-width: 125px;
  height: 30px;
  min-height: 30px;
  font-size: 1rem;
  padding: 0 5px;
}









/*      >>>     Pay (Body)     <<<*/










#pay .body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  flex: 1;
  background: var(--light);
  border-radius: 15px;
  box-shadow: none;
  transition: 0.5s ease-out;
  transition-delay: 0.5s;
  overflow: auto;
}

#pay .body .page {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 5px;
  gap: 5px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.2s ease-in-out;
}

#pay .body .page.active {
  opacity: 1;
  transform: scale(1);
}

#pay .body .page .top {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#pay .body .page .top i {
  position: absolute;
  top: 0;
  right: 20px;
  display: inline-block;
  width: 10px;
  height: 20px;
  font-size: 2rem;
  align-self: flex-start;
}

#pay .body .page .top i:hover {
  color: var(--dark);
  scale: 0.9;
  transition: 0.3s;
  cursor: pointer;
}

#pay .body .page .top h1 {
  width: 250px;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--black);
}

#pay .body .page .top ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

#pay .body .page .input-box {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}

#pay .body .page .input-box input {
  padding: 12px 0px 8px 42px;
  border: none;
  width: 100%;
  color: var(--black);
  border: none;
  background: transparent;
  font-weight: 300;
  font-size: 1rem;
  border-radius: 0px;
  border-bottom: 2px solid var(--grey);
  outline: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

#pay .body .page .input-box input {
  color: transparent;
  font-size: 0.8rem;
}

#pay .body .page .input-box input:hover,
#pay .body .page .input-box input:focus,
#pay .body .page .input-box input:valid {
  border-bottom: 2px solid var(--dark);
}

#pay .body .page .input-box input:focus,
#pay .body .page .input-box input:valid {
  color: var(--black);
}

#pay .body .page .input-box span {
  position: absolute;
  left: 0;
  padding: 12px 10px 8px 42px;
  pointer-events: none;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: var(--grey);
  transition: 0.5s ease;
}

#pay .body .page .input-box input:focus::placeholder,
#pay .body .page .input-box input:focus::placeholder {
  color: var(--black);
}

#pay .body .page .input-box input:valid ~ span,
#pay .body .page .input-box input:focus ~ span {
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--dark);
  transform: translate(15px, -12px);
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 0 8px;
}

#pay .body .page .input-box input:valid ~ span,
#pay .body .page .input-box input:focus ~ span {
  border: 2px solid var(--white);
}

#pay .body .page .input-box i {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  padding: 2px 0;
  padding-right: 8px;
  color: var(--grey);
  font-size: 1rem;
  border-right: 2px solid var(--grey);
  transition: 0.3s ease;
}

#pay .body .page .input-box input:valid ~ i,
#pay .body .page .input-box input:focus ~ i,
#pay .body .page .input-box input:hover ~ i {
  color: var(--dark);
  border-right: 2px solid var(--dark);
}

#pay .body .page .bottom {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 5px;
  overflow-y: scroll;
}

#pay .body .page .bottom li {
  display: grid;
  grid-template-columns: 1fr 50px 50px 75px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 50px;
  gap: 5px;
  padding: 0 10px;
  font-size: 1rem;
  border-bottom: 1px solid var(--grey);
  cursor: pointer;
  z-index: var(--lvl1);
}

#pay .body .page .bottom li:not(#pay .body .page .bottom li.headings):hover {
  border-bottom: 1px solid var(--neon);
}

#pay .body .page .bottom li.headings {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--upDown);
  color: var(--black);
  border-bottom: 0px solid var(--dark);
  backdrop-filter: blur(1px);
  padding: 0 10px;
  font-weight: bold;
  cursor: default;
  z-index: var(--lvl2);
}

#pay .body .page .bottom li .name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#pay .body .page .bottom li p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  font-size: 0.8rem;
}

#pay .body .page .bottom li div:not(:nth-child(1)) {
  margin: 0 auto;
}

#pay .body .page .bottom li:not(.headings) .you {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
  margin: 0 auto;
  border-radius: 25% / 55%;
  transition: 0.3s ease-in-out;
  background: transparent;
  color: var(--neon);
  font-weight: bold;
  text-shadow: var(--shadow2);
  border: 2px solid var(--neon);
  text-shadow: var(--shadow2);
}

#pay .body .page .bottom li .cancel {
  color: red;
}

#pay .body .page .bottom li .value.Trip {
  color: red;
  font-style: bold;
}

#pay .body .page .bottom li .value.Payment {
  color: lime;
  font-style: bold;
}








/* -----------------------------         Main (Map)         ------------------------------------ */









/*      >>>     Map (Body)     <<<*/











#map .body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  flex: 1;
  background: var(--light);
  border-radius: 15px;
  box-shadow: none;
  transition: 0.5s ease-out;
  transition-delay: 0.5s;
  overflow: auto;
}









/* -----------------------------         Main (Menu)         ------------------------------------ */









/*      >>>     Menu (Header)     <<<*/










#menu .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 0;
  min-height: 0;
  gap: 10px;
  opacity: 0;
  padding: 0 10px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

#menu .header.active {
  opacity: 1;
  height: 75px;
  min-height: 75px;
  padding: 0 10px;
}

#menu .header .top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

#menu .header .title {
  font-size: 2rem;
  padding: 0 10px 0 0;
  text-align: left;
}

#menu .header .subtitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  letter-spacing: 5px;
  font-size: 1rem;
  text-align: left;
  padding: 0 0 0 10px;
  border-left: 2px solid var(--dark);
}

#menu .header span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 40px;
  gap: 5px;
  padding: 0 5px;
  font-size: 0.8rem;
  color: var(--dark);
  border: 3px solid var(--dark);
  border-radius: 15% / 50%;
  background: var(--grey);
  outline: none;
  cursor: pointer;
  z-index: var(--lvl3);
  transition: 0.2s ease-in-out;
}

#menu .header span i {
  font-weight: bold;
  font-size: 1rem;
}

#menu .header span:hover,
#menu .header span:active {
  transform: scale(0.95);
  color: var(--white);
  background: var(--dark);
}









/*      >>>     Menu (Body)     <<<*/










#menu .body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  flex: 1;
  background: var(--light);
  border-radius: 15px;
  box-shadow: none;
  transition: 0.5s ease-out;
  transition-delay: 0.5s;
  overflow: auto;
}

#menu .body .page {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 5px;
  gap: 5px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.2s ease-in-out;
}

#menu .body .page.active {
  opacity: 1;
  transform: scale(1);
}

#menu .body .page .go-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  background: var(--white);
  border-radius: 10px;
  border: 3px solid var(--grey);
  color: var(--grey);
  font-size: 2rem;
  margin-left: 10px;
  margin-top: 10px;
  z-index: var(--lvl5);
  justify-self: flex-start;
  align-self: flex-start;
}

#menu .body #pricing .go-back,
#menu .body #cancellation .go-back {
  margin-bottom: 15px;
}

#menu .body .page .go-back i {
  font-size: 1.6rem;
  transition: 0.3s ease;
}

#menu .body .page .go-back:hover,
#menu .body .page .go-back:active {
  border: 3px solid var(--dark);
  color: var(--dark);
  cursor: pointer;
}









/*      >>>     Menu (Body: Profile Menu)     <<<*/









#menu .body .page .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 35px;
  min-height: 35px;
}

#menu .body .page .title .ri-add-line {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 35px;
  min-height: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  outline: none;
  color: var(--black);
  background: transparent;
  border: 3px solid var(--black);
  border-radius: 45% / 65%;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}

#menu .body #profileMenu .top {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 215px;
  min-height: 215px;
  padding: 10px;
  color: var(--white);
  background: linear-gradient(0deg, var(--dark) -25%, var(--neon) 100%);
  border-radius: 10px;
  overflow: hidden;
}

#menu .body #profileMenu .top .img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  min-height: 100px;
  margin: 2px auto;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--white);
}

#menu .body #profileMenu .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#menu .body #profileMenu .top h1 {
  font-size: 2rem;
  font-weight: bold;
}

#menu .body #profileMenu .top h3 {
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: bold;
}


#menu .body #profileMenu .top .details {
  display: flex;
  gap: 10px; /* Increased gap for better spacing between phone and email sections */
  justify-content: space-around;
  align-items: center;
  margin-top: 5px;
}

#menu .body #profileMenu .top .details .number,
#menu .body #profileMenu .top .details .email,
#menu .body #profileMenu .top .details .facebook,
#menu .body #profileMenu .top .details .instagram {
  display: flex; /* Make each section a flex container */
  align-items: center; /* Align icon and text vertically */
  gap: 5px; /* Space between icon and link */
  font-size: 0.8rem;
}

#menu .body #profileMenu .top .details .number a,
#menu .body #profileMenu .top .details .email a,
#menu .body #profileMenu .top .details .facebook a,
#menu .body #profileMenu .top .details .instagram a {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: inherit;
  text-decoration: none;
}

#menu .body #profileMenu .top .details .number i,
#menu .body #profileMenu .top .details .email i,
#menu .body #profileMenu .top .details .facebook i,
#menu .body #profileMenu .top .details .instagram i {
  display: flex; /* Ensure icons behave like flex items */
  justify-content: center;
  align-items: center;
  font-size: 1rem; /* Adjust icon size for better alignment */
  color: inherit; /* Match icon color with text */
}


#menu .body #profileMenu .middle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 5px;
}

#menu .body #profileMenu .middle li {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  min-height: 35px;
  margin: 0px auto !important;
  border-radius: 10px;
  gap: 20px;
  cursor: pointer;
  margin-left: 20px;
}

#menu .body #profileMenu .middle li:hover,
#menu .body #profileMenu .middle li:active {
  color: var(--dark);
  background: var(--white);
  box-shadow: var(--inset);
  text-shadow: var(--shadow);
}

#menu .body #profileMenu .middle li:hover .icon,
#menu .body #profileMenu .middle li:active .icon {
  border-right: 1px solid var(--dark);
}

#menu .body #profileMenu .middle li .icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 25px;
  font-size: 1.2rem;
  padding-right: 20px;
  border-right: 1px solid var(--white);
}

#menu .body #profileMenu .middle li .text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

#menu .body #profileMenu .bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 0 10px;
}

#menu .body #profileMenu .bottom #logOut {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 40px;
  padding: 5px;
  gap: 25px;
  font-size: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.3);
  text-shadow: 0 0 1px var(--shadow2);
  cursor: pointer;
  transition: 0.1s ease-in-out;
}

#menu .body #profileMenu .bottom #logOut .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu .body #profileMenu .bottom #logOut .text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

#menu .body #profileMenu .bottom #logOut:hover,
#menu .body #profileMenu .bottom #logOut:active {
  color: var(--dark);
}









/*      >>>     Menu (Body: Profile)     <<<*/









#menu .body #profile {
  padding: 0;
}

#menu .body #profile .top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 175px;
  min-height: 175px;
  margin: 10px auto;
  border-radius: 15px;
  background: var(--txt);
}

#menu .body #profile .top::before {
  content: '';
  position: absolute;
  bottom: -15px;
  width: 200px;
  height: 5px;
  border-radius: 50%;
  filter: blur(2px);
  background: var(--grey);
  z-index: var(--lvl0);
}

#menu .body #profile .top #bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  filter: saturate(1.5) contrast(0.9) ;
  z-index: var(--lvl1);
}

#menu .body #profile .top .logo {
  position: absolute;
  top: 15px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow2);
  border: 3px solid var(--white);
  overflow: hidden;
  z-index: var(--lvl1);
}

#menu .body #profile .top .logo #logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#menu .body #profile .top h2,
#menu .body #profile .top h3,
#menu .body #profile .top h4 {
  position: absolute;
  color: var(--white);
  text-shadow: var(--shadow2);
  z-index: var(--lvl2);
}

#menu .body #profile .top h3 {
  top: 20px;
  right: 20px;
  letter-spacing: 3px;
}

#menu .body #profile .top h2 {
  top: 100px;
  left: 25px;
  font-size: 1.4rem;
  letter-spacing: 5px;
}

#menu .body #profile .top h4 {
  top: 130px;
  left: 26px;
  font-size: 0.8rem;
}

#menu .body #profile .bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
  height: 100%;
  gap: 10px;
  padding: 10px;
}

#menu .body #profile .bottom .box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 10px 10px 10px;
  border: 3px solid var(--grey);
  border-radius: 15px;
}

#menu .body #profile .bottom .box .title {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 10px 15px;
}

#menu .body #profile .bottom .box .title h3 {
  font-size: 1rem;
}

#menu .body #profile .bottom .box .title button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 35px;
  min-height: 35px;
  gap: 5px;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: var(--grey);
  background: var(--white);
  border-radius: 15px;
  border: 2px solid var(--grey);
  box-shadow: none;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}

#menu .body #profile .bottom .box .title button:hover,
#menu .body #profile .bottom .box .title button:active {
  background: var(--black);
  border: 2px solid var(--neon);
  color: var(--neon);
}

#menu .body #profile .bottom .box .input-box {
  position: relative;
  width: 90%;
  margin: 0px auto 0px auto;
  border-radius: 5px;
}

#menu .body #profile .bottom .box .input-box input,
#menu .body #profile .bottom .box .input-box select {
  height: 35px; /* Adjusted height for better alignment */
  padding: 8px 10px 8px 40px; /* Adjusted padding for readability */
  font-size: 0.85rem; /* Smaller font size to maintain readability */
  border: none;
  width: 100%;
  color: var(--black);
  font-weight: 300;
  outline: none;
  cursor: text;
  background: transparent;
  transition: 0.5s ease;
}

#menu .body #profile .bottom .box .file-input {
  position: relative;
  cursor: pointer;
}

#menu .body #profile .bottom .box .file-input .bxs-hand-up {
  display: none;
  position: absolute;
  left: 50%;
  color: var(--neon);
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  padding-right: 0px;
  border-right: 0px solid var(--neon);
  transition: 0.3s ease;
}

#menu .body #profile .bottom .box .input-box span {
  position: absolute;
  left: 0;
  padding: 8px 10px 10px 40px;
  pointer-events: none;
  transform: translate(-30px, -18px);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  color: var(--black);
  transition: 0.5s ease;
}

#menu .body #profile .bottom .box .input-box input:focus::placeholder {
  color: var(--black);
}

#menu .body #profile .bottom .box .input-box input:valid ~ span,
#menu .body #profile .bottom .box .input-box input:focus ~ span,
#menu .body #profile .bottom .box .input-box select:valid ~ span,
#menu .body #profile .bottom .box .input-box select:focus ~ span {
  color: var(--neon);
  background: var(--white);
  transform: translate(20px, -12px);
  border-radius: 3px;
  font-size: 0.8rem;
  padding: 0 8px;
}

#menu .body #profile .bottom .box .bottom .input-box input:focus ~ span,
#menu .body #profile .bottom .box .bottom .input-box input:valid ~ span {
  background: var(--gradient);
}

#menu .body #profile .bottom .box .input-box i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--neon);
  padding-right: 5px;
  border-right: 2px solid var(--dark);
  transition: 0.3s ease;
}

#menu .body #profile .bottom .box .input-box input:valid,
#menu .body #profile .bottom .box .input-box input:focus,
#menu .body #profile .bottom .box .input-box select:valid,
#menu .body #profile .bottom .box .input-box select:focus {
  border-bottom: 1px solid var(--dark);
}

/* Department Dropdown Specific Styling */
#menu .body #profile .bottom .box .input-box select {
  padding-right: 30px; /* Space for the arrow */
  background-size: 12px;
  font-size: 0.85rem; /* Smaller font size for readability */
}

#menu .body #profile .bottom .box li img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: calc(200% - 50px);
}









/*      >>>     Menu (Body: times)     <<<*/









#menu .body #times {
  padding: 20px 10px;
}

#menu .body #times .select-box {
  position: relative;
  width: 200px;
  min-width: fit-content;
  margin: 0 auto;
  border-radius: 10px;
  background: var(--white);
  margin-bottom: 10px;
}

#menu .body #times .top .input-box input,
#menu .body #times .select-box select,
#menu .body #times .top .select-box input {
  padding: 12px 0px 8px 42px;
  border: none;
  width: 100%;
  color: var(--black);
  border: none;
  background: transparent;
  font-weight: 300;
  font-size: 1rem;
  border-radius: 0px;
  border-bottom: 2px solid var(--grey);
  outline: none;
  cursor: text;
  transition: 0.2s ease-in-out;
}

#menu .body #times .bottom .select-box select {
  padding: 5px 0px 5px 35px;
}

#menu .body #times .select-box select,
#menu .body #times .top .select-box input {
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid var(--grey);
}

#menu .body #times .top .select-box input {
  border: 2px solid var(--white) !important;
}

#menu .body #times .top .input-box .date,
#menu .body #times .top .input-box input::placeholder,
#menu .body #times .top .select-box select,
#menu .body #times .top .select-box input {
  color: transparent;
  font-size: 0.8rem;
}

#menu .body #times .select-box select:valid,
#menu .body #times .select-box select:focus,
#menu .body #times .top .select-box input:valid,
#menu .body #times .top .select-box input:focus {
  color: var(--black);
  border: 2px solid var(--dark);
}

#menu .body #times .top .input-box input:hover,
#menu .body #times .top .input-box input:focus,
#menu .body #times .top .input-box input:valid {
  border-bottom: 2px solid var(--dark);
}

#menu .body #times .top .input-box span,
#menu .body #times .select-box span {
  position: absolute;
  left: 0;
  padding: 12px 10px 8px 42px;
  pointer-events: none;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: var(--grey);
  transition: 0.5s ease;
}

#menu .body #times .top .input-box input:focus::placeholder,
#menu .body #times .top .input-box input:focus::placeholder {
  color: var(--white);
}

#menu .body #times .top .input-box input:valid ~ span,
#menu .body #times .top .input-box input:focus ~ span,
#menu .body #times .select-box select:valid ~ span,
#menu .body #times .select-box select:focus ~ span,
#menu .body #times .top .select-box input:focus ~ span,
#menu .body #times .top .select-box input:valid ~ span {
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--dark);
  transform: translate(15px, -12px);
  border-radius: 5px;
  font-size: 0.8rem;
  padding: 0 8px;
}

#menu .body #times .top .input-box input:valid ~ span,
#menu .body #times .top .input-box input:focus ~ span,
#menu .body #times .top .select-box input:focus ~ span,
#menu .body #times .top .select-box input:valid ~ span {
  border: 2px solid var(--white);
}

#menu .body #times .top .input-box i,
#menu .body #times .select-box i {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  padding: 2px 0;
  padding-right: 8px;
  color: var(--grey);
  font-size: 1rem;
  border-right: 2px solid var(--grey);
  transition: 0.3s ease;
}

#menu .body #times .bottom .select-box i {
  top: 8px;
}

#menu .body #times .top .input-box input:valid ~ i,
#menu .body #times .top .input-box input:focus ~ i,
#menu .body #times .top .input-box input:hover ~ i,
#menu .body #times .select-box select:valid ~ i,
#menu .body #times .select-box select:focus ~ i,
#menu .body #times .select-box select:hover ~ i,
#menu .body #times .top .select-box input:hover ~ i,
#menu .body #times .top .select-box input:focus ~ i,
#menu .body #times .top .select-box input:valid ~ i {
  color: var(--dark);
  border-right: 2px solid var(--dark);
}

#menu .body #times #uwc,
#menu .body #times #cput {
  display: none;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

#menu .body #times #uwc.active,
#menu .body #times #cput.active {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

#menu .body #times .top {
  display: flex;
  width: 100%;
  height: 150px;
  min-height: 150px;
  justify-content: center;
  align-items: center;
}

#menu .body #times .top .img {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  width: 100%;
  max-width: 500px;
  height: 150px;
  min-height: 150px;
  margin: 2px auto;
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid var(--white);
}

#menu .body #times .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#menu .body #times .middle ,
#menu .body #times .bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

#menu .body #times .middle h3 ,
#menu .body #times .bottom h3 {
  text-decoration: underline;
  padding-bottom: 10px;
}









/*      >>>     Menu (Body: prices)     <<<*/









#menu .body #pricing {
  padding: 10px;
  gap: 10px
}

#menu .body #pricing .top,
#menu .body #pricing .middle,
#menu .body #pricing .bottom {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

#menu .body #pricing .top h3,
#menu .body #pricing .middle h3,
#menu .body #pricing .bottom h3 {
  text-decoration: underline;
  margin-bottom: 10px;
}

#menu .body #pricing .top ul,
#menu .body #pricing .middle ul,
#menu .body #pricing .bottom ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu .body #pricing .top ul li,
#menu .body #pricing .middle ul li,
#menu .body #pricing .bottom ul li{
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  letter-spacing: 0.8px;
}









/*      >>>     Menu (Body: cancellation)     <<<*/









#menu .body #cancellation {
  padding: 10px;
  gap: 10px
}

#menu .body #cancellation .top,
#menu .body #cancellation .middle,
#menu .body #cancellation .bottom {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

#menu .body #cancellation .top h3,
#menu .body #cancellation .middle h3,
#menu .body #cancellation .bottom h3 {
  text-decoration: underline;
  margin-bottom: 10px;
}

#menu .body #cancellation .bottom h3 {
  margin-top: 15px;
}










/* -----------------------------         Register Box         ------------------------------------ */









#form {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradient);
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  padding: 25px;
  overflow: hidden;
  z-index: var(--lvl0);
  opacity: 0;
  transform: scale(0.95);
  transition: 0.2s ease-in-out;
}

#form.active {
  opacity: 1;
  transform: scale(1);
  z-index: var(--lvl5);
}

#form .body,
#form .footer   {
  position: relative;
  justify-content: center;
  align-items: center;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
  width: 100%;
  max-width: 500px;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: 0.2s ease-in-out;
}

#form .body.active,
#form .footer.active {
  opacity: 1;
  transform: scale(1);
}

#form #chk {
  display: none;
}

#form .body .top {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0px;
  padding-top: 10px;
  gap: 0px;
  background: var(--white);
  z-index: var(--lvl1);
  overflow-y: scroll;
}

#form .body .top label {
  margin-top: -15px;
  margin-bottom: 15px;
}

#form .body .top .input-box {
  margin-top: 0px;
  margin-bottom: 10px;
}

#form .body label {
  color: var(--black);
  font-size: 2rem;
  justify-content: center;
  display: flex;
  gap: 15px;
  margin: 10px auto 20px auto;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
  transform: scale(0.6);
  transition: .5s ease-in-out;
}

#form .body label i {
  transform: translateY(5px);
}

#form .body .top button {
  width: 60%;
  height: 35px;
  min-height: 35px;
  margin: 10px auto;
  justify-content: center;
  display: block;
  color: var(--black);
  background: transparent;
  font-size: 1em;
  font-weight: bold;
  outline: none;
  border: 2px solid var(--black);
  border-radius: 5px;
  transform: scale(1);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

#form .body .top button:hover, 
#form .body .top button:active {
  color: var(--dark);
  text-shadow: var(--shadow);
  border: 2px solid var(--dark);
  background: var(--white);
  transform: scale(0.95);
}

#form .body .bottom {
  background: var(--upDown);
  position: absolute;
  bottom: 0%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  gap: 25px;
  background: var(--gradient);
  bottom: 0;
  border-radius: 50% / 5%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateY(calc(0% + 75px));
  transition: 0.8s ease-in-out;
  padding: 10px;
  z-index: var(--lvl2);
}

#form .body .bottom form {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 100%;
  gap: 5px;
}

#form .body .bottom label {
  color: var(--white);
  transform: scale(1);
}

#form .body .bottom button {
  width: 250px;
  height: 35px;
  min-height: 35px;
  margin: 0px auto;
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--black);
  background: var(--white);
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  outline: none;
  border: 2px solid var(--dark);
  border-radius: 5px;
  transform: scale(1);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

#form .body .bottom button:hover, 
#form .body .bottom button:active {
  color: var(--dark);
  border: 2px solid var(--neon);
  transform: scale(0.95);
}

#chk:checked ~ #logInPage {
  transform: translateY(calc(100% - 50px));
}

#chk:checked ~ #logInPage label {
  transform: scale(0.8);
  margin: 0px auto 30px auto;
}

#chk:not(:checked) ~ #signUpPage label i,
#chk:checked ~ #logInPage label i {
  opacity: 1;
  transition: 0.2s ease-in-out;
}

#chk:not(:checked) ~ #logInPage label i,
#chk:checked ~ #signUpPage label i {
  opacity: 0;
}

#chk:checked ~ #signUpPage label {
  transform: scale(1);
}

/* Updated input-box styling to adjust height and improve readability */
#form  .input-box {
  position: relative;
  width: 75%;
  margin: 15px auto 0px auto;
  border-radius: 5px;
}

#form  .input-box input,
#form  .input-box select {
  height: 35px; /* Adjusted height for better alignment */
  padding: 2px 10px 2px 40px; /* Adjusted padding for readability */
  font-size: 0.85rem; /* Smaller font size to maintain readability */
  border: 1px solid var(--black);
  background: var(--white);
  width: 100%;
  color: var(--black);
  font-weight: 300;
  border-radius: 5px;
  outline: none;
  cursor: text;
  transition: 0.5s ease;
}

#form  .input-box span {
  position: absolute;
  left: 0;
  padding: 8px 10px 10px 40px;
  pointer-events: none;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  color: var(--black);
  transition: 0.5s ease;
}

#form  .input-box input:focus::placeholder {
  color: var(--black);
}

#form  .input-box input:valid ~ span,
#form  .input-box input:focus ~ span,
#form  .input-box select:valid ~ span,
#form  .input-box select:focus ~ span {
  color: var(--dark);
  background: var(--white);
  transform: translate(20px, -12px) !important;
  border-radius: 3px;
  font-size: 0.8rem;
  padding: 0 8px;
}

#form .body .bottom .input-box input:focus ~ span,
#form .body .bottom .input-box input:valid ~ span {
  background: transparent;
  color: var(--white);
  font-weight: bold;
  transform: translate(20px, -18px) !important;
}

#form  .input-box i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--black);
  padding-right: 5px;
  border-right: 2px solid var(--black);
  transition: 0.3s ease;
}

#form  .input-box input:valid ~ i,
#form  .input-box input:focus ~ i,
#form  .input-box input:hover ~ i,
#form  .input-box select:valid ~ i,
#form  .input-box select:focus ~ i,
#form  .input-box select:hover ~ i {
  color: var(--dark);
  border-right: 2px solid var(--dark);
}

#form  .input-box input:valid,
#form  .input-box input:focus,
#form  .input-box input:hover,
#form  .input-box select:valid,
#form  .input-box select:focus,
#form  .input-box select:hover {
  border: 2px solid var(--dark);
}

/* Department Dropdown Specific Styling */
#form  .input-box select {
  padding-right: 30px; /* Space for the arrow */
  background-size: 12px;
  font-size: 0.85rem; /* Smaller font size for readability */
}

#form .body #checkBox label {
  color: var(--black);
  font-size: 0.9rem; /* Adjusted font size for the checkbox label */
  margin: 0 10px; /* Space between label and checkbox */
  font-weight: normal; /* Override bold styling */
  cursor: pointer; /* Maintain pointer cursor */
  white-space: nowrap;
  transform: none; /* Remove scaling effect */
  display: inline; /* Ensure it remains inline for alignment */
}

#form .body #checkBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  margin-top: 10px;
}

#form  .input-box #isCPUTStudent {
  width: 15px;
  height: 15px;
}

#form #forgotPassword {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 10px;
  cursor: pointer;
  color: var(--white);
  text-decoration: underline;
}

#form #forgotPassword:hover { 
  color: var(--dark);
}

#form .footer #backToLogin {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 10px;
  margin-right: 50px;
  cursor: pointer;
  color: var(--black);
  text-decoration: underline;
}

#form .footer #backToLogin:hover { 
  color: var(--dark);
}

#form .footer {
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
  width: 350px;
  height: 500px;
  min-height: 500px;
  position: absolute;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

#form .footer label {
  color: var(--black);
  transform: scale(1);
  cursor: default;
}

#form .footer button {
  width: 60%;
  height: 35px;
  min-height: 35px;
  margin: 0px auto;
  justify-content: center;
  display: block;
  color: var(--black);
  background: var(--white);
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  outline: none;
  border: 2px solid var(--dark);
  border-radius: 5px;
  transform: scale(1);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

#form .footer button:hover, 
#form .footer button:active {
  color: var(--dark);
  border: 2px solid var(--neon);
  transform: scale(0.95);
}

.circular-icon {
  border-radius: 50%;
  border: 2px solid #000; /* Optional: add border color */
  overflow: hidden; /* Ensures the image is clipped to a circle */
}









/* -----------------------------         Footer         ------------------------------------ */









footer {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 65px;
  border-radius: 25px;
  z-index: var(--lvl4);
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(from var(--a), var(--dark), var(--neon), var(--neon), var(--dark));
  border-radius: 25px;
  animation: rotating 20s linear infinite;
}

footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(from var(--a), var(--dark), var(--neon), var(--neon), var(--dark));
  animation: rotating 20s linear infinite;
  filter: blur(15px);
  border-radius: 25px;
  opacity: 0.5;
}

@property --a {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes rotating {
  0% {
      --a: 0deg
  }
  25% {
      --a: 360deg
  }
  50% {
      --a: 0deg
  }
  75% {
      --a: -360deg
  }
  100% {
      --a: 0deg
  }
}

footer nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 63px;
  border-radius: 25px;
  background: var(--white);
  z-index: var(--lvl1);
}

footer nav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  height: auto;
  width: auto;
}

footer nav a .icon {
  position: relative;
  display: block;
  width: 50px;
  height: 70px;
  line-height: 70px;
  font-size: 1.5rem;
  text-align: center;
  background-image: var(--blackGradient);
  -webkit-background-clip: text; /* For Safari */
  background-clip: text; /* Apply the gradient as text color */
  color: transparent;
  transform: translateY(5px);
  transition: color 0.3s ease, transform 0.5s ease; /* Adjust transition duration and timing function */
}

footer nav a.active .icon {
  transform: translateY(-8px) scale(1.3); /* Adjust scale factor as needed */
  background-image: var(--gradient);
  -webkit-background-clip: text; /* For Safari */
  background-clip: text; /* Apply the gradient as text color */
  color: transparent;
}

footer nav a .text {
  position: absolute;
  text-align: center;
  color: var(--black);
  font-weight: 550;
  font-size: 0.8rem;
  transition: 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

footer nav a.active .text {
  opacity: 1;
  transform: translateY(18px);
}









/* -----------------------------         Responsiveness on smaller screens         ------------------------------------ */









/* Second widest PC screen width (larger screens use default CSS) */
@media (max-width: 1300px) { 

}

/* Widest Tablet screen width */
@media (max-width: 875px) { 

}

/* Medium Tablet screen width */
@media (max-width: 500px) {
  section {
    padding: 15px 15px 100px 15px !important;
    gap: 5px !important;
  }
  section .header.active {
    height: 65px !important;
    min-height: 65px !important;
  }
  #home .body #recent .bottom {
    gap: 0px;
  }
  #home .body #recent .bottom li {
    height: 65px;
    min-height: fit-content;
  }
  #pay .header p {
    bottom: 10px;
    right: 100px;
  }
  #menu .header .title {
    font-size: 1.5rem;
  }
  #menu .header .subtitle {
    letter-spacing: 2px;
    font-size: 0.8rem;
  }
  #menu .body #profile .bottom .box {
    grid-template-columns: repeat(1, 1fr);
  }
  #form {
    padding: 0px;
    background: var(--white);
  }
  #form .body {
    padding: 50px 0px;
  }
  footer {
    bottom: 15px;
    left: 10px;
    transform: translate(0);
    width: calc(100% - 20px);
  }
  footer nav a .icon,
  footer nav .cart-btn .icon .ri-shopping-cart-2-fill {
    font-size: 1.3rem;
  }
  footer nav .cart-btn .icon .bx.active {
    margin-left: -16px;
    margin-top: -18px;
    font-size: 0.8rem !important;
  }
}

/* Small Tablet screen width */
@media (max-width: 450px) { 

}

/* Widest Phone screen width */
@media (max-width: 400px) { 

}

/* Smallest Phone screen width */
@media (max-width: 350px) { 

}