.help-text {
  font-size: 12px;
  font-style: italic;
}

#loadingScreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  /* background: url(/images/body-bg.png) #04080d top center no-repeat; */
  background: rgb(93, 159, 250);
  background: linear-gradient(
      121deg,
      rgba(93, 159, 250, 1) 0%,
      rgba(12, 110, 247, 1) 21%,
      rgba(246, 157, 13, 1) 100%
    )
    fixed no-repeat;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loadingScreen:before {
  content: normal;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #000000;
}

#loadingScreen .loader,
#loadingScreen .loader:before,
#loadingScreen .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}

#loadingScreen .loader {
  color: #fff;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

#loadingScreen .loader:before,
#loadingScreen .loader:after {
  content: "";
  position: absolute;
  top: 0;
}

#loadingScreen .loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

#loadingScreen .loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

#mediaStatusBox {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.status-header .close-btn {
  cursor: pointer;
  color: red;
}

.status-body {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.status-body div {
  display: flex;
  gap: 4px;
}

.status-body p {
  margin: 10px 0;
}

.status-body button {
  background-color: #4caf50;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.status-body button:hover {
  background-color: #45a049;
}

.media-status-box {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  border-radius: 5px;
  width: 250px;
}

.status-content {
  display: flex;
  justify-content: space-between;
}

.close-btn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.progress {
  margin-top: 10px;
}

.reload-message {
  margin-top: 10px;
}

.reload-btn {
  margin-top: 5px;
  background-color: white;
  color: black;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

/* /////////////////////////  */

.media-status-box {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  border-radius: 5px;
  width: 250px;
}

.status-content {
  display: flex;
  justify-content: space-between;
}

.close-btn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.progress {
  margin-top: 10px;
}

.reload-message {
  margin-top: 10px;
}

.reload-btn {
  margin-top: 5px;
  background-color: white;
  color: black;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

#bottomRightBox {
  position: fixed;
  /* Fixes the box to the viewport */
  bottom: 20px;
  /* Distance from the bottom */
  right: 20px;
  width: auto;
  height: 300px;
  /* Distance from the right */
  background-color: rgba(255, 255, 255, 0.9);
  /* Light background with some transparency */
  border: 1px solid #ccc;
  /* Light border */
  padding: 10px;
  /* Padding inside the box */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Optional shadow for better visibility */
  z-index: 1000;
  /* Ensure it's above other elements */
}

.boxHeader {
  font-weight: 400;
  color: black;
}
