
#container {
    display: flex;
    max-width: 1420px; /* Gesamtbreite begrenzen */
    overflow-x: hidden;
    margin: auto;
    overflow: hidden;
}

#left-column {
    width: 45%;
    border-radius: 10px;
    max-width: 700px; /* Verhindert, dass es zu breit wird */
    height: 100vh; 
    font-size: 75%; 
    background-color: rgba(0, 0, 0, 0.75);
    color:#fff;
    padding: 20px;
    overflow-x: hidden;
}
#right-column {
    flex: 1; /* Damit es flexibel wächst */
    max-width: 700px; /* Begrenzung auf maximal 700px */
    height: 100vh; 
    border-radius: 20px;
    position: relative;
    overflow-y: scroll;
}
#meine {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 150px;
    height: 150px;
    padding:0px;
    background-color: rgba(f, f, f, 0.5);
    transform: translate(-50%, -50%); /* Genau in die Mitte der rechten Spalte */
}
#kopf{height:70px;border-top-right-radius: 10px; border-top-left-radius: 10px;overflow: hidden;}
@media (max-width: 700px) {
    #left-column {
        display: none; /* Versteckt die linke Spalte unter 700px */
    }

    #right-column {
        width: 100%; /* Rechts nimmt dann den ganzen Platz ein */
    }
}
/* Grundlayout */
.hamburger-menu {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9999;
}

/* Menü-Icon */
.menu-icon {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 5px 0;
}

/* Menü Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -550px;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #222;
    color: white;
    padding: 10px;
    box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 9999;
}

/* Menü aktiv */
.menu-overlay.active {
    right: 0 !important;
}

/* Close Button */
.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    text-align: right;
}

/* Menüstruktur */
.menu-items {
    list-style: none;
    padding: 0;
}

.menu-items b {
    display: block;
    margin: 15px 0 10px;
    font-size: 18px;
    color: #ffcc00;
}

.menu-items li {
    margin: 5px 0;
}

.menu-items a {
    text-decoration: none;
    color: #ddd;
    font-size: 16px;
    padding: 10px;
    display: block;
}

.menu-items a:hover {
    background: #444;
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
    .menu-overlay {
        width: 100%;
        max-width: none;
    }
}
#liste ul {
    list-style-type:circle;
    padding: 0;
}
#liste li {
    margin: 8px 0;
    font-size: medium;
    display: block;
    background-color: #feae00;
    width: 98%;
    border:1px solid #000;
    border-radius: 5px;
    padding: 5px;
}
#liste li:hover {
    margin: 4px 0;
    display: block;
    background-color: #fe6100;
    width: 98%;
    border:3px solid #000;
    border-radius: 5px;
    padding-left: 5px;
}
#liste a {
    color: rgb(15, 15, 19);
    text-decoration: none;
    width: 100%;
    cursor: pointer;
}
#liste a:hover {
    text-decoration: underline;
}