/* ==========================================================================
   Globale Styles (für alle Seiten)
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    /* Danger / Warning (Rot) - Basierend auf deinem Disconnect-Button */
    --color-danger-bg: #fee2e2;
    --color-danger-border: #fca5a5;
    --color-danger-text: #b91c1c;
    --color-danger-hover: #fecaca;

    /* Info / Override (Blau) */
    --color-info-bg: #dbeafe;
    --color-info-border: #93c5fd;
    --color-info-text: #1d4ed8;
    --color-info-hover: #bfdbfe;

    /* Success (Grün) - Für deinen Berechnen-Button etc. */
    --color-success-bg: #10b981;
    --color-success-hover: #059669;

    /* Neutral / Default */
    --color-border-default: #d1d5db;
    --color-text-muted: #6b7280;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f3f4f6;
    color: #111827;
    transition: all 0.3s ease-in-out;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 20px 30px;
}

a {
    color: #3b82f6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Überschriften --- */

h1 {
    margin-top: 0;
    color: #1f2937;
}

h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: #1f2937;
}

h3 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

/* ==========================================================================
   Styles für Impressum & Datenschutz
   ========================================================================== */

.page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.card {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    color: #4b5563;
}

.back-link:hover {
    color: #111827;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

.footer a {
    margin: 0 15px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #10b981;
    text-decoration: underline;
}