
/* loader */
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance:textfield;
    appearance: textfield; 
}

::-webkit-scrollbar {
  width: 5px; /* Set the width of the vertical scrollbar */
  height: 5px; /* Set the height of the horizontal scrollbar */
}

::-webkit-scrollbar-thumb {
  background: #adf3ee; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners */
}

::-webkit-scrollbar-thumb:hover {
  background: #2eded3; /* Color when hovered */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar:horizontal {
  display: none; /* Prevent styling horizontal scrollbar */
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  /* Light overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Ensures it's above everything */
}

.pulse-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse-bubble {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #2eded3;
  /* Blue color */
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}

.pulse-bubble:nth-child(2) {
  animation-delay: 0.2s;
}

.pulse-bubble:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0% {
      transform: scale(1);
      opacity: 1;
  }

  50% {
      transform: scale(1.5);
      opacity: 0.5;
  }

  100% {
      transform: scale(1);
      opacity: 1;
  }
}



body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.base-color{
  color:  #2eded3;
}

select option{
  background-color: #fff;
   border-bottom: 5px solid red;
  /* text-align: center; */
}
select option:first-child{
  text-align:start;
}

.btn-login,
.btn-signup {
  padding: 10px 20px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.btn-login {
  background-color: transparent;
  color: #000;
}

.btn-signup {
  background-color: #2eded3;
  color: #fff;
}

a {
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(117, 117, 117, 0.1);
}

header .logo {
  font-size: 1.9rem;
  font-weight: bold;
  color: #00c0ad;
}

header nav {
  display: flex;
  align-items: center;
  margin-left: -15rem;
}

.social-media a i {
  margin-right: 10px;
  font-size: 1.4rem;
  color: #000;
}

@media (max-width: 950px) {
  header nav {
    margin-left: -2rem;
  }

  header {
    margin-top: 5px;
    padding: 5px 20px;
  }
}

header nav a {
  margin-left: 40px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* Default hidden mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 80px;
  /* Adjust based on header height */
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-nav a {
  margin-bottom: 15px;
  text-decoration: none;
  color: #060606;
  font-weight: bold;
  padding: 10px;
}

/* Hamburger menu icon */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  float: right;
  position: absolute;
  right: 30px;
  top: 30px;
}
#toast-container {
  position: fixed;
  top: 10px;
  width:300px;
  /* Adjust this if needed */
  right: 20px;
  z-index: 9999;
  /* Ensure this is very high */
  pointer-events: none;
  /* Prevent other elements from blocking clicks */
}
.menu-icon span {
  height: 3px;
  width: 100%;
  background-color: #000;
}

/* Show mobile menu icon on small screens */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  #toast-container{
    width: 200px;
  }
  header {
    margin-top: 5px;
    padding: 5px ;
  }

  /* header nav,
  header .nav-btn {
    display: none;
  
  } */

  .mobile-nav.active {
    display: flex;
    /* Show the mobile nav when active */
  }
}

/* .footer-row */
.copy {
  background-color: #2eded3;
  text-align: center;
}

.copy p,
hr {
  margin: 0;
  padding: 15px;
}

.footer-bottom {
  width: 90%;
  height: 0.8px;
  background-color: #000;
  margin: 0 auto;
}

.footer-row {
  padding: 50px;
  color: #000;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background-color: #2eded3;
  /* align-items: flex-start; */
  /* flex-wrap: wrap; */
  /* border-bottom: 1px solid #000; */
  /* Allows wrapping on smaller screens */
}
.footer-logo{
  font-size: 16px;
}



.footer-row .footer-col h3 {
  margin-bottom: 10px;
}

.footer-row ul {
  list-style: none;
  padding: 0;
}

.footer-row ul li {
  margin-bottom: 5px;
}

.footer-row a {
  text-decoration: none;
  color: black;
}

.social-media{
  margin-top: 6px;
}

@media (max-width: 768px) {
  /* header {
    flex-direction: column;
    align-items: flex-start;
  } */

  .footer-row {
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    padding: 20px;
    /* align-items: flex-start; */
  }
  .footer-row ul li {
    margin-bottom: 2px;
  }
  .footer-row .footer-col h3 {
    /* font-size: 20px; */
    margin-bottom: 10px;
  }

  .footer-row .footer-col {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
