/* Horní menu */
header {
  background: #222;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

header .logo {
  height: 40px;
}

/* Horní navigace */
.topnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;        /* <<< tohle drží odkazy vedle sebe */
}

.topnav li {
  margin-left: 20px;
}

.topnav a {
  color: white;
  text-decoration: none;
}

.topnav a:hover {
  text-decoration: underline;
}

/* Rozdělení na levý panel + obsah */
.container {
  display: flex;
  min-height: calc(100vh - 120px); /* místo pro header+footer */
}

/* Levé menu */
.sidebar {
  width: 200px;
  background: #333;
  padding: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 15px;
}

.sidebar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* Obsah */
main {
  flex: 1;
  padding: 20px;
  background: #fff;
}

/* Footer */
footer {
  text-align: center;   /* <<< zarovná text doprostřed */
  padding: 15px;
  background: #222;
  color: white;
}