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

body {
  margin: 0;
}

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

.topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

h1 {
  font-size: 24px;
  margin: 0;
  letter-spacing: 0;
}

.muted {
  color: #687385;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.summary-item {
  border: 1px solid #d7dce3;
  border-radius: 6px;
  background: #ffffff;
  padding: 12px;
}

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

select,
button,
.button,
input {
  min-height: 36px;
  border: 1px solid #c4ccd7;
  border-radius: 6px;
  background: #ffffff;
  color: #1f2933;
  padding: 0 10px;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.table-wrap {
  overflow: auto;
  border: 1px solid #d7dce3;
  border-radius: 6px;
  background: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  border-bottom: 1px solid #e4e8ee;
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f0f3f7;
  font-weight: 650;
}

.suggestion {
  max-width: 360px;
  white-space: pre-wrap;
  word-break: break-word;
}

.actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

dialog {
  border: 1px solid #c4ccd7;
  border-radius: 6px;
  padding: 18px;
  max-width: 420px;
}
