body {
  font-family: system-ui, sans-serif;
  background-color: #f9f9fc;
  color: #1a1a1a;
  padding: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

h1 {
  color: #27398a;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

main {
  background: white;
  border: 1px solid #27398a;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section {
  margin-bottom: 20px;
  border-color: #27398a;
}
.section legend {
  color: #ff6f61;
  font-weight: bold;
}

label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

input[type=checkbox] {
  margin-right: 0.5rem;
}

select,
input[type=number] {
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 300px;
  margin-top: 0.3rem;
}

button[type=submit] {
  background: #ff6f61;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
button[type=submit]:hover {
  background: rgb(255, 87.7594936709, 71.5);
}

.logger {
  background: #000;
  color: #0f0;
  padding: 1rem;
  height: 200px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-word;
  border-radius: 4px;
}

.dots::after {
  content: "";
  display: inline-block;
  width: 1ch;
  text-align: left;
  animation: dots 2s steps(4, end) infinite;
  vertical-align: bottom;
}

@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}
#elapsed-time {
  font-style: italic;
}

#refresh-btn button {
  background: #ff6f61;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
#refresh-btn button:hover {
  background: rgb(255, 87.7594936709, 71.5);
}/*# sourceMappingURL=styles.css.map */