body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

a {
  color: #8B0000;
}

/* Globale Stile */
.container {
    display: flex;
    min-height: 100vh;
    text-align: left;
    word-break: keep-all;
}

.inbox_links {
    width: 200px; 
    background-color: #FFC1C1;
    padding: 10px;
    border-right: 1px solid #ccc;
    flex-shrink: 0;
    overflow-y: auto;
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
}

.inbox_rechts {
    width: 200px;
    background-color: #FFC1C1;
    padding: 10px;
    border-right: 1px solid #ccc;
    flex-shrink: 0;
    overflow-y: auto;
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
}

.inbox_links h3 {
    margin-top: 0;
    background-color: #8B0000;
    color: #FF8811;
    padding: 5px;
    display: inline-block;
}

.inbox_rechts h3 {
    margin-top: 0;
    background-color: #8B0000;
    color: #FF8811;
    padding: 5px;
    display: inline-block;
}

.inbox_links ul, .inbox_rechts ul {
    list-style: none;
    padding: 0;
}

.inbox_links li, .inbox_rechts li {
    list-style-position: inside;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.inbox_links a, .inbox_rechts a {
    text-decoration: none;
    font-weight: bold;
    color:  #8B0000;
}

a[href="index.php?name=home"] {
    color: #FF8811;
    background-color: #8B0000;
    width: 190px;
    padding: 5px;
    display: inline-block;
}

.content {
    flex: 1;
    padding: 20px;
    background-color: #FDF5E6;
    overflow-y: auto;
}


/* Media Queries für mobile Geräte */
@media (max-width: 768px) { /* Bildschirmbreite kleiner oder gleich 768px */

  body {
    overflow-x: hidden;
  }

  .logo-container {
    display: flex;
    justify-content: center;
  }

    .container {
        flex-direction: column;
    }

    .content {
	flex-direction: column;
	width: auto;
        border-right: none; 
        border-bottom: 1px solid #ccc;

}

    .inbox_links, .inbox_rechts {
        width: auto; 
        border-right: none; 
        border-bottom: 1px solid #ccc;
    }

    .inbox_links h3, .inbox_rechts h3 {
        display: block;
    }

    a[href="index.php?name=home"] {
      width: auto;
      border-bottom: 1px solid #ccc;
      padding: 5px;
      display: block;
    }
}
