/* ------>>>>>  start alert*/
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-alert {
  border: 1px solid var(--text);
  background-color: var(--bglight);
  color: var(--text);
  box-shadow: 0 0 2px var(--text);
  border-radius: 5px;
  overflow: hidden;
  max-width: 360px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 9999;
  margin-top: -10%;
}

/* Style the close icon */
.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
}

/* Style the text content */
.alertcontent {
  text-align: left;
  padding: 22px 36px 13px 16px;
  font-size: 16px;
  color: var(--text);
}
/* Style the confirm button */
.confirm-btn {
  float: right;
  margin: 15px;
  padding: 6px 16px;
  cursor: pointer;
  background-color: var(--textlight);
  color: var(--background);
  border: none;
  border-radius: 3px;
  font-size: 16px;
  transition: background-color 0.3s;
}
/* Hover effect for the confirm button */
.confirm-btn:hover {
  background-color: var(--text);
}
/* ------>>>>>  End alert*/

.alerthead {
  text-align: center;
  margin: 0px;
  color: var(--textred);
  padding-bottom: 6px;
  margin-bottom: 10px;
  /* padding: 0px; */
  border-bottom: 1px solid var(--textredlight);
}

body.no-scroll {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    /* Safari-specific styles */
    .container {
      overflow-x: hidden;
    }
  }
}

.securedhist {
  flex-direction: column;
  cursor: pointer;
  border: 1px solid var(--border);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.securedhist img {
  position: absolute; /* Ensures image remains centered within .securedhist */
  top: 50%;
  opacity: 1;

  left: 50%;
  width: 20px;
  height: 22px;
  transform: translate(-50%, -50%); /* Centers image within .securedhist */
}
.securetext {
  z-index: 2;
  font-size: 9px;
}
