* {
  user-select: none;
}

.relative-overlay {
  position: relative;
  z-index: 200;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered flex container */
.content-box {
  position: relative;
  background: white;
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 12px;
  max-height: calc(100% - 6rem);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Loading animation */
.loading-container {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 35px;
}

.dot {
  position: absolute;
  top: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  animation: rotate 2s linear infinite;
  transform-origin: 5px 5px;
  background: var(--bs-gray-500);
}

.dot:nth-child(1) {
  animation-delay: -0s;
}
.dot:nth-child(2) {
  animation-delay: -0.4s;
}
.dot:nth-child(3) {
  animation-delay: -0.8s;
}
.dot:nth-child(4) {
  animation-delay: -1.2s;
}
.dot:nth-child(5) {
  animation-delay: -1.6s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translateY(-25px);
  }
  100% {
    transform: rotate(360deg) translateY(-25px);
  }
}

.tudnivalok {
  overflow-y: auto;
}

.overlay-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
}

.info-bigbigbig {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px;
  border-radius: 1rem;
  background: var(--bs-gray-200);
  margin-bottom: 10px;
  margin-top: 5px;
  line-height: 1.6rem;
}

.info-title {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 2px;
  margin-left: 20px;
}
.info-title::before {
  content: "•";
  position: absolute;
  top: -3px;
  left: -18px;
  color: black;
  font-size: 1.6rem;
  font-weight: 900;
  /* margin-right: 5px; */
}

.info-text {
  font-size: 1.05rem;
  line-height: 1.3rem;
}

.info-danger {
  color: #9d1515;
  font-size: 1.1rem;
  line-height: 1.2rem;
  font-weight: 700;
  margin-block: 10px;
}

.info-end {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 2px;
  color: var(--bs-primary);
}

.info-mini {
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 400;
  margin-top: 10px;
  color: var(--bs-gray-700);
  text-align: end;
}
hr {
  margin-top: 5px;
  margin-bottom: 5px;
  height: 2px;
}

.green,
.red,
.yellow,
.blue {
  font-weight: 600;
}
.blue {
  color: #1e6bd7;
}
.red {
  color: #ca2b20;
}
.yellow {
  color: #c79816;
}
.green {
  color: #37a937;
}
