body {
  margin: 0;
  font-family: "Meiryo", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Segoe UI", Segoe Light, Calibri, Verdana, Geneva, Tahoma, sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #bc002d; /* Rot */
}

nav button {
  background: none;
  border: none;
  color: white;
  padding: 1rem;
  font-size: 1rem;
  cursor: pointer;
}

nav button:hover {
  background-color: #800020;
}

.container {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}

.sidebar-left,
.sidebar-right {
  width: 250px;
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.sidebar-left img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.main-content {
  flex: 1 1 auto;
  padding: 2rem; 
  padding-right: 3rem;
  background-color: #fff;
  overflow-y: auto;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  hyphens: auto;
  min-width: 0; 
}

.main-content h1 {
  margin-top: 0;
}

.random-image {
  margin-bottom: 1rem;
}

.random-image img {
  width: 100%;
  border-radius: 8px;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: #555;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

hr.red-line {
  border: 0;
  border-top: 1px solid #bc002d;
  margin: 1rem 0;
}

#bildbeschreibung {
  text-align: center;
  font-weight: normal;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #333;
}

 #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #bc002d; /* Japan-Rot */
      color: white;
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      flex-wrap: wrap;
      gap: 1rem;
    }

    #cookie-banner button {
      background-color: white;
      color: #bc002d;
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
      border-radius: 4px;
      font-weight: bold;
    }

    #cookie-banner button:hover {
      background-color: #f2f2f2;
    }

    #cookie-banner.hidden {
      display: none;
    }

    .button-group {
      display: flex;
      gap: 0.5rem;
    }

