body {                                              /* Datei: designAmigaListe.css */
        font-family: monospace;                     /* Zeichensatz */
        margin: 20px;                               /* margin = Abstand */
        background: #f7f7f7;                        /* Hintergrungfarbe */
        color: #222;                                /* Schrift-Farbe */
        max-width: 500px;                           /* Formularbreite maximal */
        margin-left: auto;                          /* Linker Rand */
        margin-right: auto;                         /* Rechter Rand */
    }

    .banner {                                       /* --- Banner-Stil für die Überschrift --- */
        background: #4a7bd0;                        /* Mittelblau – anpassbar */
        color: white;                               /* Schrift-Farbe */
        padding: 18px 22px;                         /*  */
        border-radius: 8px;                         /* Radius */
        margin-bottom: 15px;                        /* Abstand unten */
        border: 1px solid #2f5ea8;                  /* etwas dunklerer Rand */
        box-shadow: 0 2px 4px rgba(0,0,0,0.15);     /*  */
    }

    .banner h1 {                                    /* Schriftgröße Banner Überschrift */
        margin: 0;                                  /* margin = Abstand */
        font-size: 1.8em;                           /* Schriftgröße */
    }

    h2 {                                            /* Schriftgröße Banner Überschrift */
        font-size: 1.0em;                           /* Schriftgröße */
        margin-bottom: 10px;                        /* Abstand unten */
    }
    h4 {                                            /* Überschrift für Hinweise */
        font-size: 0.9em;                           /* Schriftgröße */
        color: red;                                 /* Schriftfarbe */
        font-weight: bold;                          /* Fette Schrift */
        font-style: italic;
        margin-bottom: 5px;                         /* Abstand unter der Schrift */
    }


    a {                                             /* Änderungen beim Überfahren mit der Maus */
        color: #0055cc;                              /* Hover-Farbe #0055cc = blau */
        text-decoration: none;                      /*  */
    }

    a:hover {               
        text-decoration: underline;                 /* Bei Anwahl unterstreiben */
    }

    p.info {                                        /* <p> */
        font-weight: bold;                          /* Fette Schrift */
        margin-bottom: 10px;
    }

    pre {                                           /* Textabschnitt  */
        font-size: 0.8em;
        background: #ffffff;                        /* Hintergrungfarbe */
        padding: 20px;
        border: 1px solid #ddd;                     /* Rahmen */
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        white-space: pre-wrap;
        word-wrap: break-word;
        overflow-x: auto;
    }

    footer {                                        /* Seitenfuß */
        margin-top: 10px;                           /* Abstand von oben */
        font-size: 0.9em;                           /* Schriftgröße */
        font-weight:bold                            /* Fette Schrift */
        color: #666;                                /* Schrift-Farbe */
        background:#bcd;                            /* Hintergrun-Farbe */
        text-align: center;                         /* Text zentriert ausgeben */
        padding:6px 0;
    }

    @media (max-width: 480px) {
        body {
            margin: 10px;
        }
        .banner h1 {                                /* Schriftgröße Banner */
            font-size: 1.5em;
        }
        pre {
            padding: 15px;
        }
    }