body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

.kasse {
    display: flex;
    height: 100vh;
}

.produkte {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    padding: 20px;
}

.produkt {
    background: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.produkt img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.bon {
    width: 40%;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.bon-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bon-item button {
    margin-left: 20px;
}

.gesamt {
    margin-top: auto;
    font-size: 22px;
    font-weight: bold;
}

.leer {
    margin-top: 10px;
    background: darkred;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.admin {
    margin-top: 5px;
    padding: 8px;
}
.bon-item {
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

.bon-info {
    font-weight: bold;
    margin-bottom: 5px;
}

.bon-buttons {
    display: flex;
    gap: 8px;
}

.bon-buttons button {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* PLUS */
.btn-plus {
    background: #2ecc71;
    color: white;
}

/* MINUS */
.btn-minus {
    background: #f1c40f;
    color: black;
}

/* LÖSCHEN */
.btn-delete {
    background: #e74c3c;
    color: white;
}
