body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #000;
    text-align: center;
}

h1 {
    color: #cc33ff; /* Weicheres Magenta */
}

nav a {
    text-decoration: none;
    color: #0000ff;
    margin: 0 10px;
}

nav a:hover {
    color: #cc33ff; /* Hover-Farbe wie das H1 */
    text-decoration: underline;
}

footer {
    font-size: 12px;
    color: #808080;
}

ul {
    text-align: left;
    display: grid;
    gap: 1.5rem;
    max-width: 60rem;
    margin-inline: auto;
    list-style: none;
}

li {
    display: grid;
    gap: .5rem;
}

li > br {
    display: none;
}

/* Formular Styling für add.php, report.php und guestbook.php */
form {
    max-width: 60rem;
    margin-inline: auto;
    display: grid;
    gap: 1.5rem;
}

form > br {
    display: none;
}

/* Verbessertes Styling der Input- und Textarea-Felder */
form input, form textarea {
    width: 100%;
    margin: 0;
    padding: 1rem; /* Größere Felder */
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem; /* Angenehme Lesbarkeit */
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1); /* Leichter Schatten für moderne Optik */
}

textarea {
    resize: vertical;
    min-height: 8rem; /* Größeres Textarea */
}

/* Verbesserte Button-Styling */
form input[type="submit"] {
    width: fit-content;
    padding: 0.75rem 1.5rem; /* Größere Klickfläche */
    margin-inline: auto;
    background-color: #0000ff; /* Gleiche Farbe wie die Navigation */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #cc33ff; /* Hover-Farbe wie das H1 */
}

/* Responsives Design für kleinere Bildschirme */
@media (max-width: 768px) {
    ul, form[action="add.php"], form[action="report.php"], form[action="guestbook.php"] {
        max-width: 100%; /* Volle Breite auf kleinen Bildschirmen */
        padding: 1rem;
    }
}
