body {
  position: relative;
  min-height: 100vh;
}
.persistent-header {
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 255, 0.5) 0%,
    rgba(255, 0, 0, 0.5) 48%,
    rgba(0, 0, 255, 0.5) 100%
  );
  color: white;
  padding: 0.5rem;
}

.persistent-footer {
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 255, 0.5) 0%,
    rgba(255, 0, 0, 0.5) 48%,
    rgba(0, 0, 255, 0.5) 100%
  );
  color: white;
  padding: 1rem;
}
footer {
  text-align: center;
  /* background-color: #333;
  color: #fff; */
  /* padding: 5px; */
  position: absolute;
  bottom: 0;
  width: 100%;
  /* height: 2.5rem; */
}
main {
  width: 90vw;
  margin: 0 auto;
  padding: 30px 20px;
  /* min-height: calc(100vh - 211px - 58px); */
}
.ui-autocomplete {
  position: absolute;
  z-index: 99999 !important;
  cursor: default;
  padding: 0;
  margin-top: 2px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.ui-autocomplete > li {
  padding: 3px 3px;
}

.ui-autocomplete > li.ui-state-focus {
  background-color: #ddd;
}

.ui-helper-hidden-accessible {
  display: none;
}

.required {
  color: red;
}
.progress-bar-container {
  margin-top: 20px;
  width: 100%;
  height: 20px;
  background-color: #f5f5f5;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: #4caf50;
  transition: width 0.5s ease-in-out;
}
