body {
  font-family: "Montserrat", sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  background-image: url("/resources/bg-full.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
}

.logo {
  width: 90px;
  height: auto;
  align-items: center;
}

.text-box {
  background-color: #ddd;
  color: black;
  font-size: 14px;
  width: 330px;
  margin: 0 auto;
  border-radius: 5px;
}

@media screen and (max-width: 375px) {
  .text-box {
    width: 90%;
    font-size: 11px;
  }
}

#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner-container {
  text-align: center;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

.progress {
  margin-top: 10px;
  font-size: 14px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table,
th,
td {
  border: 1px solid #ddd;
}

th,
td {
  padding: 10px;
  text-align: left;
}

footer {
  margin-top: 20px;
  text-align: center;
}
