﻿/* Základní stylování */
body {
  background-color: #1b1e2b;
  color: #e0e0e0;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #00e096;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2 {
  color: #00e096;
}

.wiki-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Rozcestník (seznam článků) */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  background: #2a2f4a;
  margin: 10px 0;
  padding: 12px 18px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

ul li:hover {
  background: #3b4162;
}

/* Tabulky */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem 0;
}

table th, table td {
  border: 1px solid #444;
  padding: 10px 12px;
  text-align: left;
}

thead {
  background-color: #2c2f4a;
}

/* Responsivita */
@media (max-width: 600px) {
  .wiki-container {
    padding: 0 10px;
  }

  table, thead, tbody, th, td, tr {
    font-size: 14px;
  }
}