body {
  font-family: Arial, sans-serif;
  background: #0b0f1a;
  color: #fff;
  text-align: center;
}

h1 {
  color: gold;
}

.tagline {
  color: #aaa;
  margin-bottom: 20px;
}

button {
  margin: 10px;
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  background: #1f2a48;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #3a4f8a;
}

button.danger {
  background: crimson;
}

button.danger:hover {
  background: red;
}

.selectors {
  margin: 20px;
}

.dashboard {
  margin-top: 20px;
  font-size: 18px;
}

#logs {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
  max-height: 200px;
  overflow-y: auto;
  padding: 10px;
}