body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAF3E0; /* Ein sanfter, heller Hintergrund */
}

header {
    background-color: #8A4F7D; /* Ein beruhigendes Dunkelviolett */
    color: #FFFFFF;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Leichter Schatten für Tiefe */
}
main {
margin-left: 10px;
}

button {
    display: block;
    width: 80%;
    padding: 10px;
    margin: 20px auto;
    background-color: #FFA384; /* Ein freundliches Korallenrot */
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Schatten für einen "schwebenden" Effekt */
    cursor: pointer; /* Cursor ändert sich zum Zeiger, um Interaktivität anzuzeigen */
}

button:hover {
    background-color: #FF9270; /* Eine etwas hellere Farbe für den Hover-Effekt */
}

h1, h2 {
    margin: 10px 0;
}

.product-btn, button {
    display: block;
    width: 90%;
    padding: 10px;
    margin: 20px auto;
    background-color: #888;
    color: white;
    border: none;
    border-radius: 5px;
}

.hidden {
    display: none;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.bottom-nav a {
    color: white;
    font-size: 20px;
}

.error-message {
    color: red;
    text-align: center;
    margin-top: 10px;
}
.local-cafes {
    padding: 20px;
    background-color: #eee; /* Hintergrund zu ähnlich zur Schriftfarbe, reduziert Lesbarkeit */
}

.cafe-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 45px;
    overflow: hidden; /* Schlechte Raumnutzung und unübersichtlich */
}

.cafe-item {
    background-color: #ddd;
    padding: 5px; /* Zu wenig Padding */
    border: 2px dashed red; /* Unruhiges und störendes Design */
    font-size: 10px; /* Extrem kleine Schriftgröße */
}

.cafe-item button {
    background-color: #888;
    color: yellow; /* Schlechte Lesbarkeit */
    border: 1px dotted black;
    padding: 3px; /* Unzureichendes Padding */
    width: 100%;
    font-size: 4px; /* Noch kleinere Schriftgröße auf den Buttons */
}

.age-confirmation p, .order-list h2 {
    text-align: center;
    color: #333333; /* Dunklere Schrift für bessere Lesbarkeit */
}

.age-confirmation input {
    display: block;
    width: 80%;
    padding: 8px;
    margin: 10px auto;
    border-radius: 5px;
    border: 1px solid #ccc; /* Subtile Border für das Eingabefeld */
    font-size: 16px; /* Größere Schrift für bessere Lesbarkeit */
}
.order-list ul {
    list-style-type: none; /* Keine Listensymbole */
    padding: 0;
}

.order-list li {
    background-color: #E7D4C5; /* Ein sanftes Beige für jeden Listeneintrag */
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
	width: 10%;
}
.profile-info {
    display: none;
}
.spinner img {
    width: 30px;  // Setze die Breite des Spinners auf 30px
    height: 30px; // Setze die Höhe des Spinners auf 30px
}
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.profile-photo {
    margin-bottom: 20px;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 75px;  // Kreisförmiges Profilfoto
    border: 4px solid #8A4F7D;  // Rahmenfarbe wie im Header
}

.profile-info {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 90%;  // Anpassung der Breite für mobile Ansichten
    max-width: 500px;  // Maximalbreite für größere Displays
}

.profile-info p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}