body {
  background: #181a20;
  color: #f1f1f1;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}
.container {
  max-width: 500px;
  margin: 40px auto;
  background: #23272f;
  border-radius: 12px;
  box-shadow: 0 4px 24px #000a;
  padding: 32px 24px 24px 24px;
}
h1 {
  text-align: center;
  margin-bottom: 24px;
  color: #ffb347;
}
form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
input, button {
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
}
input {
  background: #22242b;
  color: #f1f1f1;
  flex: 1;
}
button {
  background: #ffb347;
  color: #23272f;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: #ffd580;
}
/* Reset-Button als Icon oben rechts, subtil */
#resetBtn {
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.5rem;
  margin-left: 1rem;
  transition: color 0.2s;
}
#resetBtn:hover {
  color: #ff4c4c;
  background: none;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #20232a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px #0004;
  margin-top: 18px;
}
th, td {
  padding: 14px 10px;
  text-align: center;
  font-size: 1.08rem;
}
th {
  background: #23272f;
  color: #ffb347;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #333;
}
td {
  background: #20232a;
  border-bottom: 1px solid #23272f;
  transition: background 0.2s;
}
tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: #23272f;
}
td.rank {
  font-weight: bold;
  font-size: 1.15rem;
}
td.rank.top1 { color: #ffd700; }
td.rank.top2 { color: #c0c0c0; }
td.rank.top3 { color: #cd7f32; }
