
/* Seitenmenü */
.sidebar {
  background-color: var(--color-secondary);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}


.menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu h4 {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #FFD700;
}
