:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #cbd5e1;
  --accent: #0f766e;
  --accent-hover: #115e59;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
}

.status {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
}

.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-x: auto;
}

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

th,
td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

th {
  font-size: 0.9rem;
  color: var(--muted);
}

tr:last-child td {
  border-bottom: none;
}

button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

button:hover {
  background: var(--accent-hover);
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.4rem;
  }

  th,
  td {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}
