/* Cookie disclosure banner — minimal informational variant.
   Self-contained styles: hard-coded colors so the banner reads the same
   on every layout (app, landing, login, static) regardless of which
   token sheet is loaded. Extracted from _partials/cookie_banner.html.twig. */
.cookie-banner {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    z-index: 9999;
    max-width: 720px; margin: 0 auto;
    background: #11141a;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 14px 18px;
    display: none;
    align-items: center; gap: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(5,150,105,0.08);
    color: #e8eaf0;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem; line-height: 1.55;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.cookie-banner.show { display: flex; }
.cookie-banner.in   { opacity: 1; transform: translateY(0); }

.cookie-banner-text { flex: 1; min-width: 0; }
.cookie-banner-text a {
    color: #34d399;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: #6ee7b7; }

.cookie-banner-ok {
    flex-shrink: 0;
    background: #059669;
    color: #ffffff;
    border: none;
    padding: 9px 18px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: filter 0.15s, transform 0.15s;
}
.cookie-banner-ok:hover { filter: brightness(1.12); }
.cookie-banner-ok:active { transform: translateY(1px); }

@media (max-width: 520px) {
    .cookie-banner { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px; }
    .cookie-banner-ok { width: 100%; padding: 10px; }
}
