/* Reset CSS für allgemeine Formatierung */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Hauptcontainer */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
}

.item-row {
    display: flex;
    align-items: left;
    margin-bottom: 10px;
}

.item-row span {
    flex: 1;
}

.item-row button, .item-row input {
    margin: 0 5px;
}

textarea {
    width: 100%;
    height: 150px;
}

.room-container {
    margin-bottom: 20px;
}

.room-header {
    display: flex;
    align-items: left;
}

.room-header span {
    flex: 1;
    font-weight: bold;
}

header {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* Hauptinhalt-Stil */
main {
    padding: 40px 0;
    background-color: #f0f0f0;
    text-align: center;
    border-top: 3px solid #ff00ff;
    border-bottom: 3px solid #00ffff;
}

main h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

main p {
    font-size: 20px;
    opacity: 0.8;
    color: #555;
}
#show {
    padding-top: 20px ;
}

#list {
    display: inline-block;
    text-align: left;
    border-style: none;
}
#list-out {
    display: inline-block;
    border-style: none;
    padding-top: 20px ;
    margin: 0 auto;
}
/* Footer-Stil */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer p {
    font-size: 14px;
    opacity: 0.7;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 200px; /* Passen Sie die Breite des Logos an Ihre Anforderungen an */
    margin-right: 10px; /* Abstand zwischen dem Logo und dem Text */
}

.menu-icon {
    cursor: pointer;
    display: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
}

.menu {
   /* display: flex;*/
   font-family: 'Open Sans', sans-serif;
    
    
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu li {
    margin: 0 20px;
}

.menu a {
    text-decoration: none;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .menu {
        /* wenn flex dann ist das menü sorfot ausgeklappt*/
        display: none; 
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
    }
    .menu ul{
       
        flex-direction: column; /*sorgt dafür dass das drop down untereinnander ist*/
        
   }

    .menu.show {
        display: flex; 
        /*wenn weg, dannn klappt nnicht aus*/
        flex-direction: column;
         
    }

    .menu a {
        display: flex; 
        margin: 15px ; 
        /* Abstand zwischen den Links im mobilen Menü */
    }

    .menu-icon {
        display: block;
    }
}
