html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;


}

#root {
  width: 100%;
  height: 100%;
}

.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

.custom-select-option {
  color: #000000;
  /* Default text color */
}

/* Responsive calendar dropdown */
.responsive-calendar-dropdown {
  width: 100% !important;
  /* Full width for smaller screens */
  max-width: 600px;
  /* Restrict maximum width for larger screens */
  margin: 0 auto;
  /* Center the dropdown */
  padding: 10px;
}

.responsive-calendar-dropdown .ant-picker-panel-container {
  display: flex;
  flex-wrap: nowrap;
  /* Default: side-by-side calendars */
  gap: 10px;
}

@media (max-width: 768px) {
  .responsive-calendar-dropdown .ant-picker-panel-container {
    flex-wrap: wrap;
    /* Wrap calendars */
    flex-direction: column;
    /* Stack calendars vertically */
  }

  .responsive-calendar-dropdown {
    width: 90vw !important;
    /* Fit within the viewport on mobile */
  }
}

@media (min-width: 768px) {
  .responsive-calendar-dropdown .ant-picker-panel-container {
    flex-direction: row;
    /* Side-by-side calendars */
  }
}

.ant-picker-dropdown {
  min-width: unset !important;
  max-width: 100%;
}

.custom-select-option:hover {
  background-color: #100d25 !important;
  /* Custom hover background color */
  color: #ffffff !important;
  /* Custom hover text color */
}

.ant-select-selector {
  border: none !important;
  box-shadow: none !important;
  border-radius: 9999px !important;
  /* Full rounded corners */
  height: 25px !important;
  padding-right: 0.3rem !important;
  background-color: transparent !important;
  /* Custom background color */
  align-items: center;
  justify-content: flex-end;
  text-align: left;
font-family: poppinsLight;
}

/* Remove blue border during date selection */
.ant-picker-focused,
.ant-picker:hover,
.ant-picker-active-bar {
  border-color: transparent !important;
  /* Make border transparent */
  box-shadow: none !important;
  /* Remove blue box-shadow */
}

/* Ensure the underline remains consistent (optional) */
.ant-picker-active-bar {
  background-color: black !important;
  /* Change the underline to black */
}

.ant-select-selection-placeholder {
  color: #4a4a4a !important;
  /* Darker placeholder text color */
  font-size: 1rem !important;
  /* Larger placeholder text size */
  font-family: sans-serif;
}

.ant-picker-input>input::placeholder {
  color: #4a4a4a !important;
  /* Darker placeholder text color */
  font-size: 1rem !important;
  /* Larger placeholder text size */
}

.ant-select-dropdown {
  border-radius: 0.5rem !important;
  /* Rounded corners for dropdown */
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

/* For Webkit Browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  /* Change the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  /* Thumb color */
  border-radius: 10px;
  /* Rounded edges */
}

::-webkit-scrollbar-track {
  background-color: #ddd;
  /* Track color */
  border-radius: 10px;
}


@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@keyframes moveUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.animate-up {
  animation: moveUp 1s infinite;
}

.swiper-pagination {
  display: flex;
  justify-content: center; /* Center align bullets */
  align-items: center;
  gap: 10px; /* Spacing between bullets */
  margin-top: 16px; /* Space above the pagination */
}

.swiper-pagination-bullet {
  width: 30px; /* Length of the bullet */
  height: 3px; /* Height of the bullet */
  background: white; /* Bullet color */
  border-radius: 20px; /* Make the ends rounded */
  opacity: 0.5; /* Default transparency */
  transition: opacity 0.3s ease; /* Smooth transition for hover/active state */
}

.swiper-pagination-bullet-active {
  opacity: 1; /* Fully opaque for active bullet */
  background: white; /* Active bullet color */
}

.swiper-pagination-bullet {
  width: 40px; /* Make the bullets longer */
  height: 3px; /* Adjust the height */
  background-color: black !important; /* Force black color */
  border-radius: 5px; /* Rounded edges for aesthetics */
  opacity: 1 !important; /* Ensure full visibility */
  margin: 0 5px; /* Add spacing between bullets */
  transition: transform 0.3s ease; /* Smooth scaling for active bullets */
}

.swiper-pagination-bullet-active {
  transform: scale(1.3); /* Highlight active bullet */
  background-color: black !important; /* Ensure active bullet remains black */
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.star-twinkle {
  animation: twinkle 2s infinite ease-in-out;
}
