/* 📌 Allgemeines Layout */
.full-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
}

/* 🔹 Moderner Header */
.header {
    background: rgba(52, 58, 64, 0.9); /* Dunkelgrau mit leichter Transparenz */
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten für Tiefe */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* 🔹 Titel im Header */
.site-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); /* Leichte Umrandung für bessere Lesbarkeit */
}

/* 🔹 Header-Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
}

/* 🔹 Hauptinhalt */
.content-area {
   flex-grow: 1; /* Nutzt den gesamten verbleibenden Platz */
   height: calc(90vh - 60px - 40px); /* Berechnet die Höhe zwischen Header & Footer */
   overflow-y: auto; /* Falls der Inhalt länger als der Bildschirm ist, kann gescrollt werden */
   padding: 20px;
}

/* 🔹 Neuer moderner Footer (Gleiche Optik wie Header) */
.footer {
    background: rgba(52, 58, 64, 0.9); /* Gleiche Farbe wie Header */
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Dezente Trennlinie */
    height: 60px; /* Gleiche Höhe wie Header */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2); /* Schatten nach oben */
    position: sticky;
    bottom: 0;
    z-index: 1000;
}

/* 🔹 Footer-Link */
.footer-link {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: #007bff;
    text-decoration: underline;
}

/* 🔵 Buttons optimieren */
.btn-outline-light {
    border: 1px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 🔥 Extra Verbesserungen */
body {
    background: linear-gradient(to bottom, #5F9EA0, #2C3E50);
    color: #f8f9fa; /* Hellerer Text für besseren Kontrast */
}

/* 🏷️ Überschriften */
h2, h4 {
    color: #f8f9fa;
}
