body {
    background-color: skyblue;
}

/* ── Cookie consent banner ─────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 18, 16, 0.96);
    border-top: 1px solid rgba(245, 240, 228, .16);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    animation: cookieFadeIn .3s ease;
}

.cookie-banner--hiding {
    animation: cookieFadeOut .3s ease forwards;
}

.cookie-banner--above-toolbar {
    bottom: 40px;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    margin: 0;
    font-size: .88rem;
    color: rgba(245, 240, 228, .80);
    line-height: 1.5;
}

.cookie-banner__link {
    color: #86c7a6;
    text-decoration: underline;
    margin-left: 4px;
}

.cookie-banner__link:hover {
    color: #1f7a4a;
}

.cookie-banner__btn {
    flex-shrink: 0;
    padding: 8px 22px;
    border: none;
    border-radius: 8px;
    background: #1f7a4a;
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.cookie-banner__btn:hover {
    background: #186040;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes cookieFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(12px); }
}
