.wrapper_bestellhistorie {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.item_bestellhistorie {
    display: flex;
    flex-direction: column;
    width: 370px;
    border: 1px solid var(--color_logo);
    background-color: white;
    justify-content: space-between;
    gap: 5px;
    height: 100%
}

.item_without_detail_bestellhistorie {
    height: 110px;
    display: flex;
    flex-direction: column;
    padding: 5px;
    justify-content: space-between;
    gap: 5px;
    height: 100%
}

.item_zeile3_bestellhistorie {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}

.item_zeile4_bestellhistorie {
    display: flex;
    flex-direction: row;
    gap: 10px;
    
}

.details_bestellhistorie {
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.details_bestellhistorie h3 {
    padding-top: 5px;
    border-top: 1px dashed var(--color_logo);
}


.details_bestellhistorie table {
    border-collapse: collapse;
    width: 100%;
}

.img_details_bestellhistorie {
    width: 50px;
}

.details_bestellhistorie td {
    padding: 1px;
}

.details_bestellhistorie table tr:nth-child(even) {
    background-color: var(--color2);
}

.details_bestellhistorie table tr:hover { 
    background-color: var(--color2);
}

@media(max-width: 800px) {
    .wrapper_bestellhistorie  {
        justify-content:center;
    }
}
