body {
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
}

.header {
    margin: 20px 0;
}

h1{
    font-family: Arial, sans-serif;
    color: orangered;
}

.filter {
    margin-top: 10px;
}

.filter a {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 6px 14px;
    margin: 4px;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #555;
    transition: 0.2s;
}

.filter a:hover {
    background: #444;
}

.filter a.active {
    background: #660066;
    border-color: #990099;
    font-weight: bold;
}

table {
    width: 95%;
    margin: 10px auto;
    border-collapse: collapse;
    background: #222;
    font-size: 14px;
}

thead th {
    background: #333;
    padding: 8px;
    border-bottom: 2px solid #444;
}

tbody td {
    padding: 6px;
    border-bottom: 1px solid #444;
}

tr:nth-child(even) {
    background: #1a1a1a;
}

tr:hover {
    background: #292929;
}

.highlight {
    background: #660066;
    font-weight: bold;
}

.export {
    margin-top: 15px;
    position: absolute;
    
}

.pdf-btn {
    background: #0066cc;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #004c99;
    transition: 0.2s;
}

.pdf-btn:hover {
    background: #0055aa;
}

th {
    cursor: pointer;
    background-color: #f2f2f2;
    user-select: none;
    padding: 8px;
}

th:hover {
    background-color: #ddd;
}

th.sorted-asc::after {
    content: " 🔼";
}

th.sorted-desc::after {
    content: " 🔽";
}

/* Driver cellákban lévő linkek kinézete */
#csapatallas td a {
  color: inherit;           /* örökli a szöveg színét */
  text-decoration: none;    /* ne legyen aláhúzás */
  display: inline-block;
  width: 100%;
  height: 100%;
}

/* Hover állapotban se változzon (de ha szeretnéd, kiemelheted) */
#csapatallas td a:hover {
  color: inherit;
  background: rgba(255, 255, 255, 0.05); /* finom kiemelés */
  text-decoration: none;
}

