.main-header {
    float: none
}

.shopHeader {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Add this line */
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
    font-size: 30px;
    color: grey;
}

#zurueckZurBestellung{
    background-color: #f8721d;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    border-radius: 10px;
    width: 23rem;
    height: 3rem;
    text-transform: uppercase;
}

#korbIcon {
   width: 4rem;
}

.warenkorb {
    position: relative;
}

#anzahl {
    display: flex;
    justify-content: center;
    align-items: center;
    top: -1rem;
    left: 2rem;
    font-size: 15px;
    color: white;
    position: absolute;
    width: 3rem;
    height: 3rem;
    background-color: #f8721d;
    border-radius: 50%;
    display: flex;
    text-align: center;
    font-weight: bold;
    transition: transform .5s; /* Dauer der Transition festlegen */
}

#anzahl.selected {
    transform: scale(1.5); /* Vergrößert das Element um 10% */
}

.produktbild {
    display: block;
    max-width: 100%;
    height: auto;
}

.produkte {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin: 20px;
}

/*=== KATALOG ===*/
.gruppenliste {
  margin-left: 2rem;
}

#Lesemappen, #Themen {
    margin-top: 1rem;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding-left: 10px;
}

.gruppe {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 200;
    text-align: left;
    cursor: pointer;
    padding-left: 2rem;
    border-bottom: 1px solid #d5d5d5;
}

.gruppe:hover {
    background-color: #f2f2f2;
}

/*=== Dropdownd liste */

.dropdown-button {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    color: #495057;
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
    padding: 0.375rem 0.75rem;
    text-align: center;
    width: 8rem;
}

.dropdown-button:hover {
    background-color: #e9ecef;
    color: #495057;;
}

.dropdown-liste {
   display: none;
   position: absolute;
   background-color: #f8f9fa;
    box-shadow: 5px 5px 15px -5px #000000;  
   z-index: 20;
}

.dropdown-liste.show {
    display: block;
}

.dropdown-item {
    display: block;
    font-size: 1.3rem;
    padding: 0.375rem 0.75rem;
    text-align: left;
    width: 100%;
}

.dropdown-item.inactive {
    background-color: grey;
    color: white;
}

.dropdown-item.active:hover {
    background-color: #e9ecef;
}

.selected {
    background-color: var(--selectcolor);
    color: white;
    font-weight: bold;
}

/*=== SHOP SEITE ===*/
.container {
    display: flex;
    flex-direction: row;
}

.gruppeninhalt {
    width: 100%;
}

.option-info {
    color: blue;
}
