body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(180, 220, 146, 0.12), transparent 32%),
    linear-gradient(180deg, #0f1d15, #15281d 48%, #102016 100%);
  color: #e8f3df;
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.card {
  background: rgba(24, 43, 31, 0.94);
  border: 1px solid rgba(156, 194, 138, 0.26);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 14px 28px rgba(5, 12, 8, 0.35);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

label {
  display: block;
  margin-top: 10px;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(154, 188, 137, 0.32);
  background: rgba(15, 29, 21, 0.78);
  color: #edf8e5;
}

button {
  margin-top: 12px;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #8abf5f, #5e8d41);
  color: #f4ffea;
  cursor: pointer;
  border: 1px solid rgba(182, 217, 151, 0.4);
}

button.secondary {
  background: rgba(222, 242, 199, 0.1);
  color: #d9ebc5;
}

.grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 14px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  max-height: 400px;
  overflow: auto;
}

.list li {
  margin-bottom: 8px;
}

.list button {
  margin: 0;
  width: 100%;
  text-align: left;
  background: rgba(16, 30, 22, 0.86);
  border: 1px solid rgba(159, 195, 140, 0.22);
}

.body {
  min-height: 220px;
  white-space: pre-wrap;
  background: rgba(10, 21, 15, 0.9);
  border: 1px solid rgba(146, 182, 128, 0.26);
  border-radius: 8px;
  padding: 12px;
}

.log-body {
  min-height: 280px;
  max-height: 420px;
  overflow: auto;
  font-size: 12px;
  line-height: 1.4;
}

.log-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.inline-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.inline-label select {
  width: auto;
  min-width: 5rem;
}

.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  cursor: pointer;
}

.top-link {
  margin: 0 0 8px;
}

.top-link a {
  color: #c9e9a2;
}

.console-output.hidden {
  display: none;
}

.console-output {
  margin-top: 10px;
}

.status {
  color: #c9e9a2;
  min-height: 1.2em;
}

.muted {
  color: #adc19f;
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
