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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 32px auto;
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 18px;
}

.panel {
  background: #fff;
  border: 1px solid #d8d4cc;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 1px 2px rgba(25, 25, 25, 0.05);
}

.eyebrow {
  margin: 0 0 8px;
  color: #7a5b18;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: 34px;
  line-height: 1.08;
  margin-bottom: 12px;
}

h2 {
  font-size: 18px;
  margin-bottom: 0;
}

.subtitle,
.muted {
  color: #606060;
  line-height: 1.5;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

input {
  width: 100%;
  border: 1px solid #c8c2b8;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: #fffdf9;
}

button {
  border: 0;
  border-radius: 6px;
  padding: 11px 14px;
  font: inherit;
  font-weight: 800;
  color: #fff;
  background: #176b5b;
  cursor: pointer;
}

button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

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

.status-head button {
  background: #2f4550;
}

.jobs {
  display: grid;
  gap: 12px;
}

.job {
  border: 1px solid #dfd9cf;
  border-radius: 8px;
  padding: 14px;
  background: #fffdf9;
}

.job strong {
  display: block;
  margin-bottom: 5px;
}

.job-meta {
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.progress {
  margin-top: 10px;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e6e0d7;
  overflow: hidden;
}

.bar {
  height: 100%;
  width: 0%;
  background: #176b5b;
  transition: width 0.2s ease;
}

.completed {
  border-color: #b7d9c7;
}

.failed {
  border-color: #e2a6a6;
}

@media (max-width: 860px) {
  .shell {
    grid-template-columns: 1fr;
    margin: 16px auto;
  }

  h1 {
    font-size: 29px;
  }
}
