﻿/* ALAP */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #eaeaea;
  color: #222;
}
html, body {
  height: 100%;
}

.page {
  width: 95%;
  margin: 20px auto;
}

.layout {
 display: grid;
 align-items: stretch;
}

.content h1 {
  margin-top: 0;
}
.content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* CÍMEK */

.seasons h2 {
  font-size: 20px;
  margin: 20px 0 10px 0;
  border-bottom: 1px solid #bdbdbd;
}

.season h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  padding: 6px 10px;
  background: #dedede;
  border-left: 6px solid #b79d5b;
}

/* SZEZON BLOKK */
.seasons {
  background: #f5f5f5;
  border: 1px solid #bbb;
  padding: 10px;
  margin-top: 10px;
}

.season {
  background: #fafafa;
  border: 1px solid #cfcfcf;
  margin-bottom: 20px;
  padding: 10px;
}

/* TÁBLÁZAT */
.results {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.results th {
  background: #e2e2e2;
  border: 1px solid #bfbfbf;
  padding: 6px;
  text-align: left;
  font-weight: bold;
}

.results thead th {
  background: #e2e2e2;
  border: 1px solid #bfbfbf;
  padding: 6px;
  text-align: left;
  font-weight: bold;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 999;
}

.results td {
  border: 1px solid #d0d0d0;
  padding: 6px;
  vertical-align: middle;
}

/* ZEBRA SOROK */
.results tbody tr:nth-child(even) {
  background: #f0f0f0;
}

/* TÍPUS IKON */
.type {
  white-space: nowrap;
  font-size: 13px;
}

.type.race {
  color: #1a1a1a;
}

.type.present {
  color: #6b6b6b;
  font-style: italic;
}

/* EREDMÉNY KIEMELÉSEK */
.pos {
  text-align: center;
}

.pos.p1
 {
  background: #e7c7f6; /* pole pozíció */
}

.pos.r1 {
  background: #bff2a9; /* futamgyőzelem */
}

.pos.dnf {
  background: #f2cccc;
  color: #800000;
}

.pos.none {
  color: #8a8a8a;
  font-weight: normal;
}

/* MOBIL */
@media (max-width: 900px) {
  .results th:nth-child(2),
  .results td:nth-child(2),
  .results th:nth-child(5),
  .results td:nth-child(5),
  .results th:nth-child(7),
  .results td:nth-child(7) {
    display: none;
  }
}

.results tbody tr:hover {
  background: #e0e0e0;
}

/* évtizedek */
.decades, .years {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.decades span,
.years span {
  padding: 4px 8px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
}

.decades span.active,
.years span.active {
  background: #dcdcdc;
  font-weight: bold;
  border-color: #999;
}

#results-content {
  padding: 15px;
  min-height: 300px;
}