/* Schriftart */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #FFFFFF; /* Einheitlicher weißer Hintergrund */
  font-size: 14px; 
  line-height: 1.5;
}

/* Wrapper mit seitlichen Balken */
.wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 100vw;
  background-color: #FFFFFF; /* Weißer Hintergrund für den Wrapper */
}

.wrapper::before,
.wrapper::after {
  content: "";
  display: block;
  width: 20px; /* Balkenbreite */
  background-color: var(--seitenfarbe, #66bb6a); /* Fallback = Naturgrün */
}

.wrapper::before {
  margin-right: 20px; /* Abstand zum Mittelteil */
}

.wrapper::after {
  margin-left: 20px; /* Abstand zum Mittelteil */
}

/* Hauptinhalt */
.content {
  width: 520px; /* Exakte Breite des Inhalts */
  box-sizing: border-box; /* Padding wird nicht in die Breite eingerechnet */
  background-color: #FFFFFF; /* Weißer Hintergrund für den Content */
  min-height: 100vh;
}

/* Navigation */
nav {
  background-color: #FFFFFF; /* Weißer Hintergrund für die Navigation */
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Headings */
h1, h2, h3 {
  color: #333;
  margin-top: 0;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.9em;
  text-align: center;
  color: #999;
  background-color: #FFFFFF; /* Weißer Hintergrund für den Footer */
}

/* Formulare & Buttons */
input, select, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: var(--seitenfarbe, #66bb6a);
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #559d59;
}

/* Listen */
ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.button-container {
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

form input,
form select {
  margin-right: 1em;
  margin-bottom: 0.5em;
}
