:root {
  color-scheme: light;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: #f5f3ef;
  color: #1c1c1c;
}

body {
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

header h1 {
  margin: 0 0 8px 0;
  font-size: 32px;
}

header p {
  margin: 0 0 24px 0;
  color: #4a4a4a;
}

.panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

input {
  flex: 1 1 320px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d0ccc4;
  font-size: 14px;
}

button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #2b2b2b;
}

.status {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
}

.status[data-kind="ok"] {
  color: #0a7a3b;
}

.status[data-kind="error"] {
  color: #b00020;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #e7e3db;
  font-size: 13px;
}

thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c6c6c;
}

@media (max-width: 700px) {
  header h1 {
    font-size: 24px;
  }

  th:nth-child(5),
  td:nth-child(5),
  th:nth-child(6),
  td:nth-child(6) {
    display: none;
  }
}
