body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: white;
    overflow: hidden; 
    height: 100vh;
}

.content-to-hide-wrapper{
    height: 100%; 
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
}

.container {
    width: 80vw;
    height: 75vh;
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px; /* Runde Ecken */
    flex-direction: row; /* Container nebeneinander */
    margin-top: 60px;
    font-size: 15px;
    -webkit-box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
    box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
}

.inner-container1 {
    width: 50%; /* Die beiden inneren Container teilen sich die Breite des äußeren Containers */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px 0px 0px 15px; /* Runde Ecken */
    flex-direction: column;
    display: flex;
    align-items: center; /* Vertikales Zentrieren */
    justify-content: center; 
}

.inner-container2 {
    width: 50%; /* Die beiden inneren Container teilen sich die Breite des äußeren Containers */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0px 15px 15px 0px; /* Runde Ecken */
    flex-direction: column;
    display: flex;
    align-items: center; /* Vertikales Zentrieren */
    justify-content: center; 
    overflow-y: scroll;
}

.flyer {
    width: 80%;          /* 80% der Breite des Containers */
    max-height: 90%;    /* Maximal 100% der Höhe des Containers */
    object-fit: contain; /* Das Bild wird innerhalb des Containers behalten, ohne seine Verhältnisse zu ändern */
    border-radius: 15px; /* Runde Ecken */
}


.subheader {
    font-size: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 30px;
    padding: 0;
}
.subheader2 {
    font-size: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 0;
}

.info-table { 
    margin-left: auto;
    margin-right: auto;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.content {
    width: 40vw;
    height: 30vh;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px; /* Runde Ecken */
    text-align: center;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-shadow: 0px 0px 14px 0px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 14px 0px rgba(255,255,255,1);
    box-shadow: 0px 0px 14px 0px rgba(255,255,255,1);
}

.content h1{
    margin-bottom: 20px;
}

.content p{
    margin-left: 10px;
    margin-right: 10px;
}

.phase {
    width: 80%;
    box-shadow: 0px 0px 14px 0px rgba(179,75,179,1);
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 10px;
    margin-bottom: 20px;
}

.phase-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Diese Zeile ändern, um die Kinder zu zentrieren */
    align-items: center;
}

.item-group {
    display: flex;
    align-items: center;
}

.item.count {
    min-width: 25px;  /* Diese Zahl kann je nach Bedarf angepasst werden */
    text-align: center;  /* Dies zentriert den Text innerhalb des Blocks */
}

.item.total{
    min-width: 100px;  /* Diese Zahl kann je nach Bedarf angepasst werden */
    text-align: center;  /* Dies zentriert den Text innerhalb des Blocks */
}

.item {
    margin: 5px;
    text-align: center;
    font-size: 23px;
}

.price, .total {
    flex: 2.5;
}


@media screen and (max-width: 768px) {
    .item {
        font-size: 20px;
    }

    .container {
        width: 85vw;
        height: 70vh;
        flex-direction: column;
        margin-top: 0px;
        overflow-y: auto;
        align-items: flex-start;
    }
    
    .inner-container1 {
        width: 100%;
        border-radius: 15px 15px 0px 0px;
        height: 50%;
        overflow: hidden;
    }
    
    .inner-container2 {
        width: 100%;
        border-radius: 0px 0px 15px 15px;
        justify-content: flex-start;
        height: 50%;
        overflow: auto; 
    } 
    
    .flyer {
        width: 95%;
        max-height: 95%;
        object-fit: contain;
        border-radius: 15px;
    }

    .subheader {
        font-size: 35px;
        margin-bottom: 30px;
      	margin-top: 30px;
    }

    .button4-1 {
        margin-bottom: 50px;
    }
}

/*... Ihre anderen Styles bleiben unverändert ...*/


.button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 8px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none; /* Entfernt den Standard-Fokus-Umriss */
    margin: 5px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stil für den "-" Button */
.decrement {
    background-color: #ff7f7f; /* Rotes Licht */
}

.decrement:hover {
    background-color: #ff4f4f; /* Dunkleres Rot beim Überfahren */
}

/* Stil für den "+" Button */
.increment {
    background-color: #7fff7f; /* Grünes Licht */
}

.increment:hover {
    background-color: #4fff4f; /* Dunkleres Grün beim Überfahren */
}

#tiles span {
    display: inline-block;
    padding: 10px;
    margin: 2px;
    background-color: #000000;
    border-radius: 5px;
    min-width: 45px; /* Stellen Sie die Breite nach Bedarf ein */
    text-align: center; /* Zentriert den Text in den Spans */
}

.button-checkout {
    background-color: transparent;
    border: 2px solid #ff1e1e;
    color: #ff1e1e;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
    cursor: not-allowed; /* Ändern des Cursors */
    opacity: 0.5; /* Geringere Deckkraft */
    transition: all 0.3s; /* Glatter Übergang für Änderungen */
  }

.button-checkout-active {
    background-color: transparent;
    border: 2px solid #16ba00;
    color: #16ba00;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten hinzufügen */
    transform: scale(1.05); /* Leichtes Vergrößern beim Hover */
    transition: all 0.3s; /* Glatter Übergang für Änderungen */
}

.button-checkout-active:hover {
    /* Glow Effekt beim Hover */
    box-shadow: 0 0 10px 7px rgba(19, 161, 0, 0.6);
}
