body {
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    display: flex;
}

h1 {
    margin: auto;
    color: rgb(66, 66, 66);
    user-select: none;
}

.home {
    border: 3px solid rgb(53, 53, 53);
    border-radius: 5px;
    background-color: rgb(231, 231, 231);
    color: rgb(53, 53, 53);
    padding: 5px;
    margin: 10px;
}

.settings {
    border: 3px solid rgb(53, 53, 53);
    border-radius: 5px;
    background-color: rgb(231, 231, 231);
    color: rgb(53, 53, 53);
    padding: 5px;
    margin: 10px;
    float: right;
}

.settings img {
    height: 50px;
    display: block;
    user-select: none;
}

.settings-menu {
    display: none;
    position: absolute;
    top: 90px;
    right: 0;
    margin-right: 17px;
    background-color: white;
    border: 1px solid #353535;
    box-shadow: 0 5px 10px rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 10px 15px;
    z-index: 1000;
    width: 200px;
    font-size: 0.9rem;
    user-select: none;
}

.settings-menu label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
}

.settings-menu input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.product-list {
    margin-top: 60px;
    display: inline-flex;
    flex-wrap: wrap;
    padding: 10px;
    width: 60%;
    background-color: rgb(189, 189, 189);
}

.product-item {
    border: 2px solid black;
    border-radius: 5px;
    width: 80px;
    height: 80px;
    text-align: center;
    padding: 5px;
    margin: 5px;
}

.product-item:active {
    background-color: rgb(255, 255, 255);
}

.line-break {
    width: 100%;
    height: 20px;
    clear: both;
}

.GlühweinRot {
    background-color: rgb(197, 16, 10);
    color: white;
}

.GlühweinWeis{
    background-color: rgb(255, 255, 135);
}

.Punsch {
    background-color: goldenrod;
}

.jagertee{
    background-color: rgb(146, 39, 39);
    color: white;
}

.dejavue {
    background-color: orange;
    color: white;
}

.aperol{
    background-color: red;
    color: white;
}

.limoncello{
    background-color: yellow;
}

.caipi{
    background-color: rgb(0, 216, 0);
}

.sarti{
    background-color: rgb(255, 92, 92);
    color: white;
}

.steak, .bosna, .bratwurst, .pommes{
    background-color: rgb(102, 27, 27);
    color: white;
}

.pfand{
    background-color: blue;
    color: white
}

.zurück{
    background: repeating-linear-gradient(-45deg, red 10px, blue 28px);
    color: white;
}

.shot{
    background-color: orange;
}

.placeholder{
    background-color: transparent;
    border: none;
    color: transparent;
    user-select: none;
    pointer-events: none;
}

.Warenkorb {
    border-radius: 10px;
    border: 2px solid rgb(87, 87, 87);
    height: 70ch; /* Behalte die Höhe bei */
    max-height: 30%; /* Füge eine maximale Höhe hinzu */
    width: 35%;
    float: right;
    text-align: center;
    padding: 5px;
    color: rgb(66, 66, 66);
    user-select: none;
    overflow-y: auto; /* Ermögliche vertikales Scrollen */
}


.cart-list {
    margin-top: 10px;
    margin-left: 20px;
    text-align: left; /* nur hier linksbündig */
    line-height: 25px;
    height: 80%;
    flex-grow: 1;
    overflow-y: auto;
}


.gesamt {
    margin-left: 20px;
    font-size: 20px;
    float: left;
}
#Leeren {
    margin-top: 650px;
    transform: translate(70px, 0px);
    float: right;
    border: 3px solid rgb(53, 53, 53);
    border-radius: 5px;
    background-color: rgb(231, 231, 231);
    color: rgb(53, 53, 53);
    padding: 5px;
}