/* static/style.css */

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.row {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

select,
textarea,
button {
  width: 100%;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  cursor: pointer;
}

#startBtn {
  background-color: #1abc9c;
  color: #fff;
  border: none;
}

#stopBtn {
  background-color: #e74c3c;
  color: #fff;
  border: none;
}

#stopBtn[disabled],
#startBtn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

#status {
  font-weight: bold;
  padding: 0.5rem;
  background: #f9f3a7;
  border-radius: 4px;
}

textarea {
  resize: vertical;
  height: 200px;
}
