﻿body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #eaeaea;
  color: #222;
}

.page {
  width: 95%;
  margin: 20px auto;
}

.layout {
 display: grid;
  grid-template-columns: 80% 20%;
  gap: 20px;
  align-items: stretch;
}

}

/* BAL MENÜ */
.left-menu {
  background: #f3f3f3;
  border: 1px solid #ccc;
  padding: 10px;
}

.left-menu h3 {
  text-align: center;
  margin-top: 0;
}

.left-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-menu li {
  padding: 6px;
  border-top: 1px solid #ddd;
  font-size: 14px;
}

.left-menu .sub {
  padding-left: 20px;
  font-size: 13px;
  color: #0044cc;
}

.left-menu .active {
  font-weight: bold;
}

/* KÖZÉP */
.content h1 {
  margin-top: 0;
}

.content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.intro-box {
  background: #efe7d4;
  border: 1px solid #d2c4a3;
  padding: 5px;
  margin-bottom: 15px;
}

.text-box, .fact-box {
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 12px;
  flex-grow: 1;
  margin-bottom: 15px;
  margin-top: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.text-box h2,
.fact-box h2 {
  margin-top: 0;
  border-bottom: 1px solid #ccc;
}

/* JOBB OLDAL */
.right-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-box:last-child {
  flex-grow: 1;
}

.photo-box {
  background: #eee;
  border: 1px solid #ccc;
  text-align: center;
  padding: 10px;
  margin-bottom: 15px;
}

.photo-box .img2 {
  width: 100%;
  display: block;
  border-radius: 10px
}
.photo-box .img1 {
  display: block;
}
.photo-box .name {
  padding: 8px;
  font-weight: bold;
}

.info-box {
  background: #f5f5f5;
  border: 1px solid #bbb;
  padding: 10px;
 
  margin-bottom: 15px;
}

.info-box h3 {
  margin-top: 0;
  background: #bbb;
  padding: 4px;
  font-size: 14px;
  text-align: center;
}

.info-box a {
  color: #3f83c6; !important;
  font-weight: bold !important;
  text-decoration: none !important;
}

.info-box  a:hover {
  text-decoration: underline !important;
}

.icons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icons li {
  padding: 4px 0;
}
/* 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;
}
.pos {
  text-align: center;
}

.pos.p1
 {
  background: #e7c7f6; /* pole pozíció */
}

.pos.r1 {
  background: #bff2a9; /* futamgyőzelem */
}

.results tbody tr:hover {
  background: #e0e0e0;
}