/* Grundgerüst für das Hauptmenü */
body {
    font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff; /* Reiner weißer Hintergrund wie im Screenshot */
    margin: 0;
    padding: 15px;
    display: flex;
    justify-content: center;
}

/* Container für die Buttons */
.menu-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Fester Abstand zwischen den Blöcken */
}

/* Das Styling der Buttons exakt nach Screenshot */
.menu-btn {
    background-color: #2b5a84; /* Das exakte Blau */
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 16px 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 2px; /* Fast komplett eckig, minimalste Rundung */
    text-transform: uppercase;
    display: block; 
}

/* Optisches Feedback beim Tippen */
.menu-btn:active {
    background-color: #1a3c5a; 
}
