html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #eee;
}

.hero {
  padding: 24px 16px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: 28px;
}

.hero p {
  color: #999;
  margin-top: 8px;
}

.navigation {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px;
  position: sticky;
  top: 0;
  background: #111;
  z-index: 10;
}

.navigation a {
  text-decoration: none;
  color: #fff;
  background: #1e1e1e;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
}

.navigation a:hover {
  background: #4caf50;
}

.range-section {
  padding: 12px;
  margin-bottom: 32px;
}

.range-title {
  margin-bottom: 12px;
  color: #4caf50;
}

.table {
  display: flex;
}

.header {
  font-weight: bold;
  border-bottom: 2px solid #444;
  font-size: 12px;
  color: #ccc;
}

.row {
  border-bottom: 1px solid #222;
  font-size: 12px;
}

.col {
  padding: 10px 6px;
  word-break: break-word;
}

.position {
  width: 20%;
  font-weight: bold;
}

.col:nth-child(2) {
  width: 40%;
}

.col:nth-child(3) {
  width: 40%;
}
