/* Bereinigtes CSS für das Cookie-Consent Banner (Classic-Theme in Blau/Grau) */
.cc-window {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    padding: 1em 1.8em;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background-color: #edeff5; /* Dein Hellgrau */
    color: #838391; /* Deine Textfarbe */
    border-top: 1px solid #d0d2d9;
}

.cc-message {
    display: block;
    flex: 1 1 300px;
    margin-right: 1em;
    margin-bottom: 0.5em;
}

.cc-message a, .cc-message a:visited {
    color: #0033CC;
    text-decoration: underline;
}

.cc-compliance {
    display: flex;
    align-items: center;
    align-content: space-between;
}

.cc-btn {
    display: block;
    padding: 0.4em 1.2em;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px; /* Classic / Rounded Style */
    background-color: #0033CC; /* Dein Königsblau */
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cc-btn:hover {
    background-color: #002299;
}

/* Optimierung für Mobilgeräte (bricht unter 600px Breite sauber um) */
@media (max-width: 600px) {
    .cc-window {
        flex-direction: column;
        align-items: stretch;
        padding: 1em;
    }
    .cc-message {
        margin-right: 0;
        margin-bottom: 1em;
    }
    .cc-btn {
        width: 100%;
    }
}