.tester-layout {
  display: grid;
  gap: 12px;
}

.controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  color: var(--text);
  cursor: pointer;
}

.status {
  width: 160px;
  height: 100px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 26px;
}

.ok { background: #e6ffed; border: 1px solid #3cb371; color: #046a2b; }
.wait { background: #fff4e6; border: 1px solid #e6a23c; color: #a65a00; }
.disc { background: #ffe6e6; border: 1px solid #cc0000; color: #990000; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

th, td {
  padding: 8px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.mono { font-family: Consolas, monospace; }

.log {
  height: 230px;
  width: 100%;
  overflow: auto;
  border: 1px solid var(--border);
  padding: 8px;
  background: var(--surface-muted);
  border-radius: 8px;
  white-space: pre;
}

.small {
  font-size: 13px;
  color: var(--text-soft);
}

.panel {
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
