
body {
  font-family: Inter, sans-serif;
  background: #0c0c16;
  color: #e0e0f0;
  margin: 0;
  padding: 1rem;
}

header {
  text-align: center;
  margin-bottom: 1rem;
}

.tab-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tab {
  background: #181825;
  color: #ccc;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.2s;
}

.tab:hover,
.tab.active {
  background: #3f3f56;
  color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #181825;
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background: #26263a;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #333;
}

tbody.tab-content {
  display: none;
}

tbody.tab-content.active {
  display: table-row-group;
}

.rss-ticker {
  background: #1e1e2e;
  padding: 0.5rem;
  color: #ffcc00;
  font-size: 0.9rem;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 1rem;
}
.rss-ticker a {
  color: #ffcc00;
  text-decoration: none;
}
