/*
.downloadSchedule, .downloadSchedule:hover  {
  opacity: 0 !important;
}
 .trackInfoLink{
  display: none !important;
} */

/* Overlay Styles */
.trackInfoOverLay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Semi-transparent background */
  z-index: 99999999;
  /* Ensures the overlay is on top */
  /* display: none;  */
  /* Hidden by default */
  justify-content: center;
  align-items: center;
}

.trackDetailsWrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 96%;
  max-width: 450px;
  z-index: 999999991;
  /* display: none;  */
  max-height: 90%;
  overflow-y: auto;
}

/* Content Inside the Popup */
.trackDetailsInfo img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.trackDetailsInfo p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Close Button Styles */
.trackInfoCloseBtn {
  cursor: pointer;
  font-size: 12px;
  color: #fff;
  padding: 10px 14px;
  background: #FF4D9A;
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 0;
  border-bottom-left-radius: 19px;
}

/* Show Overlay and Popup */
.show-overlay {
  display: flex;
  /* Displays the overlay */
}

.show-popup {
  display: block;
  /* Displays the popup */
}

.trackDetailsInfo p {
  font-size: 14px;
  color: #000;
  line-height: 22px;
  margin-bottom: 0px;
}

/*Scroll Bar css*/
.trackDetailsWrapper::-webkit-scrollbar {
  width: 5px;
}

.trackDetailsWrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #381d48;
  border-radius: 10px;
}

.trackDetailsWrapper::-webkit-scrollbar-thumb {
  background: #381d48;
  border-radius: 10px;
}

.trackDetailsWrapper::-webkit-scrollbar-thumb:hover {
  background: #381d48a1;
}

/*Scroll Bar css*/