/* Stil für den Button */
.button-63 {
    align-items: center;
    background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 20px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 19px 24px;
    text-decoration: none;
    user-select: none;
    white-space: nowrap;
    cursor: pointer;
    margin-bottom: 20px; 
}

.button-63:active,
.button-63:hover {
    outline: 0;
}

@media (min-width: 768px) {
    .button-63 {
        font-size: 24px;
        min-width: 196px;
    }
}

/* Stil für das Layout */

/* Stil für den Container der Liste */
#Liste {
    width: 100%;
    max-width: 600px;
    margin-top: 40px; /* Abstand nach oben, damit der Button nicht die Liste überlappt */
    padding: 10px;
}

#product-list {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

/* Sicherstellen, dass der Button mittig auf der Seite angezeigt wird */
#start-scanning {
    position: relative;
    top: 1cm;
    
    left: 50%;
    transform: translateX(-50%);
}

