/* Basislayout */
body {
  margin: 0;
  background: #000;
  color: #ddd;
  font-family: Arial, Helvetica, sans-serif;
}

/* Links */
a {
  color: #00c0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout für spätere Seiten */
.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  background: #111;
  border-right: 1px solid #333;
}

.content {
  flex: 1;
  padding: 16px;
  background: #000;
}
