@font-face {
  font-family: 'Calibri Light';
  font-style: normal;
  font-weight: normal;
  src: local('Calibri Light'), url('calibril.woff') format('woff');
  }

body {
  font-family: 'Calibri Light', 'Helvetica', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
}

header {
  /* background-color: #007BFF; */
  /* color: white; */
  padding: 1rem;
  padding-bottom: 0rem;
  text-align: center;
}

main {
  padding: 1rem;
  text-align: center;
}

footer {
  background-color: #007BFF;
  color: white;
  padding: 1rem;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: auto;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  margin-bottom: 1rem;
}

p {
  margin: 0 0 1rem;
}


.steps-container {
  margin: 20px 0;
  position: relative;
}

.progress-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 0%;
  height: 2px;
  /* background: linear-gradient(to right, blue, red); */
  background: linear-gradient(to right, #fff56a, #8ef2ff);
  /* background: linear-gradient(to right, #007aff, #00e1ff); */
  transition: width 0.5s ease-in-out;
}

.steps {
  display: flex;
  justify-content: space-between;
}

.step {
  flex: 1;
  text-align: center;
}

.step-icon {
  font-size: 24px;
}
.active {
  color: #007aff;
}

button {
  padding: 10px 20px;
  background: linear-gradient(90deg, #007aff, #00e1ff);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.results {
  /* margin-top: 20px; */
  display: none;
}

.parameter-section {
  margin-bottom: 20px;
}

.parameter-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.parameter-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.analyze-again {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #00ffcc, #0077ff);
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.status-description {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }

  h1 {
    font-size: 20px;
  }

  button {
    font-size: 14px;
  }

  .parameter-item {
    font-size: 14px;
  }
}
