/* 🔹 Footer-Container */
footer {
    background-color: #111;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: relative;
}

/* 🔹 Footer Navigation */
footer nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

footer nav ul li {
    margin: 0 15px;
}

footer nav ul li a {
    color: #66a2e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: #007bff;
}

/* 🔹 Copyright */
footer p {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* 🔹 Sticky Cookie Icon */
.cookie-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #007bff;
    color: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 1001;
}

.cookie-icon:hover {
    background: #0056b3;
    transform: scale(1.1);
}

/* 🔹 Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 47, 108, 0.95);
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; /* Versteckt, bis es gebraucht wird */
}

/* 🔹 Cookie Banner Buttons */
.cookie-controls {
    margin-top: 10px;
}

.cookie-controls button {
    background-color: #005bbf;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.cookie-controls button:hover {
    background-color: #002f6c;
}

/* 🔹 Footer immer am Seitenende */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1; /* Lässt den Inhalt den verfügbaren Platz ausfüllen */
}
