:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f5f7fa;
  color: #172033;
}

body {
  box-sizing: border-box;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px;
}

.panel {
  background: #ffffff;
  border: 1px solid #dce3ec;
  border-radius: 8px;
  padding: 20px;
}

.title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 650;
}

.text {
  margin: 0 0 16px;
  color: #4b5870;
  font-size: 14px;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  background: #2563eb;
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.button:disabled {
  cursor: default;
  opacity: 0.55;
}

.button--secondary {
  background: #475569;
}

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

.log {
  min-height: 104px;
  margin: 16px 0 0;
  border-radius: 6px;
  background: #101828;
  padding: 12px;
  color: #d8dee9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.field-frame {
  margin: 0;
  padding: 0;
  background: transparent;
}

.indicator {
  display: grid;
  width: 100%;
  min-height: 30px;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  border: 1px solid var(--age-color, #dce3ec);
  border-radius: 4px;
  background: var(--age-color, #ffffff);
  padding: 6px 8px;
}

.indicator__swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 14%);
}

.indicator__label {
  overflow: hidden;
  color: #172033;
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.indicator__meta {
  color: #4b5870;
  font-size: 11px;
  white-space: nowrap;
}

.indicator--empty {
  display: flex;
  border-color: #dce3ec;
  background: #ffffff;
  color: #4b5870;
}
