.warenkorb-panel {
    position: fixed;
    top: 0;
    right: -400px; /* Startposition außerhalb des Bildschirms */
    width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 1000; /* Stellt sicher, dass es über allem liegt */
}

.warenkorb-panel.active {
    right: 0; /* Schiebt das Panel ins Bild */
}

.warenkorb-panel button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
}

.artikel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.loeschen-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: red;
}

.loeschen-btn:hover {
    color: darkred;
}

.icon_shopping {
    position: fixed;
    top: 10px;
    left: 1470px;
    width: 30px;
    height: 30px;
}

.artikel-name {
    text-align: center;
}

body {
    background-color: rgb(50, 50, 50);
    font-family: Arial, Helvetica, sans-serif;
}

img {
    position: relative;
    left: 100px;
    height: 300px;
    width: 200px;
}

.beta-note_div {
    background-color: rgb(255, 170, 139);
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    border: 5px solid rgb(182, 182, 182);
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 200px;
    padding-right: 200px;
    z-index: 2000;
    text-align: center;
    position: fixed;
    left: 165px;
    top: 200px;
}

.beta-note_h1 {
    position: relative;
    left: auto;
    bottom: 50px;
    cursor: pointer;
}

.beta-note_p {
    position: relative;
    left: auto;
    bottom: 30px;
    cursor: pointer;
}

.beta-note_button {
    position: relative;
    left: auto;
    top: 50px;
    cursor: pointer;
}

.preis {
    text-align: center;
}

button {
    border-radius: 12px;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    background-color: white;
    color: black;
    border: 2px solid #555555;
    position: relative;
    left: 100px;
    top: -10px;
}

button:hover {
    background-color: rgb(180, 180, 180);
}

.produkt_div {
    background-color: white;
    border-style: solid;
    border-radius: 12px;
    border-width: 5px;
    margin: 50px;
    width: 450px;
    height: 450px;

}

.container_div {
    display: flex;
    justify-content: space-between;
}

.version {
    font-size: 13px;
    color: white;
    text-align: end;
    opacity: 0.3;
}