/* Grundlegende Styles (Phase 1 Platzhalter)
   Farben/Schriften werden später (nach Phase 1-2) festgelegt. */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    padding: 1rem;
}

main {
    max-width: 960px;
    margin: 0 auto;
}

header, footer {
    text-align: center;
}

nav a {
    display: inline-block;
    margin: 0 0.5rem;
    text-decoration: none;
}

/* Accesskey-Buchstabe: nur den betreffenden Buchstaben unterstreichen */
nav a u {
    text-decoration: underline;
}

/* Fokus-Indikatoren für Tastaturnavigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}
