body {
    font-family: 'Courier New', Courier, monospace;
    background: #f4f4f4;
    margin: 0;
    padding: 10px;
}

/* App nimmt die volle Breite, mit Luft zum Rand */
#app {
    background: white;
    padding: 16px;
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* Grundlegende Typografie */
h1, h2, p {
    margin-top: 0;
}

h1 {
    text-align: center;
}

/* Buttons allgemein: groß, gut klickbar */
button {
    width: 100%;
    padding: 16px 18px;
    margin: 8px 0;
    cursor: pointer;

    border: none;
    border-radius: 50px;
    background: rgba(31, 221, 255, 0.4);
    box-shadow: none;
    transition: background 0.2s;
    font-size: 1.1rem;
}

/*button:hover {
    background: rgba(0, 0, 0, 0.15);
}*/

/* Produktliste Buttons */
#produktliste button {
    color: #000;
    font-variation-settings: "wght" 700, "GRAD" 60;
}

/* Auswahl-Liste */
#auswahl {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

#auswahl li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.1rem;
}

/* Summen-Bereich */
#summen p {
    font-size: 1.1rem;
}

/* Summen fett + doppelt unterstrichen */
#summen p span {
    font-weight: bold;
    text-decoration: underline double;
}

/* Clear Button auffällig */
#clearBtn {
    background: #ff4d4d;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

#okBtn {
    background: #4dff88;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

footer {
	text-align: center;
}

#foot {
    text-align: center;
    margin-top: 20px;
}

#logos img {
    width: 120px;        /* feste Grundgröße */
    max-width: 20vw;    /* schrumpft auf kleinen Displays */
    height: auto;
    display: inline-block;
    margin: 8px;
}

/* Optional: leichte Anpassung für sehr kleine Displays */
@media (max-width: 360px) {
    body {
        padding: 6px;
    }

    #app {
        padding: 12px;
    }

    button {
        padding: 14px;
        font-size: 1rem;
    }
}