/* Erebor background */
body {
  background-image: url('/images/Uo-classic-painting.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

/* Semi-transparent content area */
.container {
  background-color: rgba(34, 34, 34, 0.92);
  padding: 1rem 2rem;
  border-radius: 4px;
}

/* Logo */
.logo__img {
  height: 100%;
  max-height: 80px;
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 4px;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin: -0.5rem 0;
}

.logo a {
  display: flex;
  align-items: center;
}

/* Post images */
.post img {
  max-width: 100%;
  height: auto;
}

.post-content img {
  border: 1px solid #444;
  border-radius: 3px;
  margin: 0.5rem 0;
}

/* Category badges */
.post-category {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-size: 0.7rem;
  margin-left: 0.5rem;
}

.post-category a {
  text-decoration: none;
}

/* Category-specific colors */
.cat-povolani {
  background-color: #2a5a3a;
}
.cat-povolani a { color: #8fc89e; }

.cat-dovednosti {
  background-color: #2a3a5a;
}
.cat-dovednosti a { color: #8eafd8; }

.cat-herni-system {
  background-color: #5a2a2a;
}
.cat-herni-system a { color: #d88e8e; }

.cat-pribehy {
  background-color: #4a2a5a;
}
.cat-pribehy a { color: #b88ed8; }

.cat-navody {
  background-color: #5a4a2a;
}
.cat-navody a { color: #d8c88e; }

/* Compact post listing */
.compact-post {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compact-post .post-title {
  font-size: 1rem;
  margin: 0;
}

.compact-post .post-meta {
  margin-top: 0.15rem;
}

/* Wiki tables */
.post-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
}

.post-content th,
.post-content td {
  border: 1px solid #555;
  padding: 0.4rem 0.6rem;
  text-align: left;
}

.post-content th {
  background-color: rgba(255, 255, 255, 0.08);
  font-weight: bold;
}

.post-content tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}

/* Sitemap page */
.sitemap-list {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding-left: 0;
}

.sitemap-list li {
  margin-bottom: 0.3rem;
  break-inside: avoid;
}

/* Table of contents */
.table-of-contents {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #444;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.table-of-contents h2 {
  margin-top: 0;
  font-size: 1rem;
}

.table-of-contents nav ul {
  list-style: none;
  padding-left: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .sitemap-list {
    columns: 1;
  }
}
