/* Grundlegende Stile für den Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    color: #333;
}

/* Allgemeine Link-Stile */
a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
    color: #003d7c;
}

/* Hilfsklasse für Seiten-Abschnitte */
.app-section {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

/* ===================================== */
/* ## Footer-Styling für alle Seiten ## */
/* ===================================== */
footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(30, 41, 59, 0.9);
    color: #94a3b8;
    margin-top: 40px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
}

footer a {
    color: #60a5fa;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #38bdf8;
    text-decoration: underline;
}