:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101418;
  color: #eef3f7;
}

body {
  margin: 0;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.panel {
  width: min(720px, 100%);
  background: #182028;
  border: 1px solid #2d3945;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 16px 48px rgb(0 0 0 / 28%);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 18px;
}

.header,
.device-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

input {
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid #4b5c6b;
  background: #0f151b;
  color: #eef3f7;
  padding: 0 12px;
  font-size: 16px;
}

.devices {
  border-top: 1px solid #2d3945;
  border-bottom: 1px solid #2d3945;
  padding: 16px 0;
}

button {
  min-width: 96px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: #3aa876;
  color: #06110c;
  font-weight: 700;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: wait;
}

pre {
  min-height: 96px;
  overflow: auto;
  margin: 24px 0 0;
  padding: 16px;
  border-radius: 6px;
  background: #0f151b;
  color: #c9d7e2;
  white-space: pre-wrap;
}
