:root {
  color-scheme: light dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(720px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 16px;
}

.notice,
.history-item {
  padding: 12px;
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 8px;
}

.auth-panel,
.history-panel {
  margin-top: 24px;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

input,
button {
  font: inherit;
  padding: 10px 12px;
}

input {
  flex: 1 1 220px;
}

.history-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.history-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.history-item p {
  margin: 0 0 8px;
}

.history-item ul {
  margin: 0;
  padding-left: 20px;
}

.history-item li {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.history-item audio {
  width: 100%;
}
