.navbar-brand {
  font-family: 'Peralta', cursive;
}

.container {
  width: unset !important;
  max-width: unset;
}

.info-table {
  border: 1px solid black;
  padding: 0.1em;
  border-radius: 6px;
  margin: 0.2em;
  overflow: auto;
}

.info-table .table {
  width: 100% !important;
}

#upload-status {
  font-size: 14px;
}
#progress-bar {
  width: 300px;
  padding-top: 25px;
  margin-top: 25px;
}

.pending-processing {
  color: #c2bd32;
}

.currently-processing {
  color: #c2bd32;
}

.failed-processing {
  color: #d93b3b;
}

.successful-processing {
  color: #208720;
}

.button-with-info {
  display: flex;
  flex-direction: column;
}

.spinner-wrapper {
  display: none;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.spinner-wrapper .spinner {
  border: 5px solid #ccc;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-top-color: #1ecd97;
  border-left-color: #1ecd97;
  animation: spin 1s infinite ease-in;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.form-post-successful {
  color: #208720;
  background-color: #d6ebd0;
  border: 1px solid #7691ad;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.42;
  margin: 0 0 2rem;
  padding: 1.2rem 1rem 0.8rem 4rem;
  position: relative;
}