/* Cookie consent banner — self-contained so it works on every layout
   (auth pages don't load Bootstrap or app.css). */

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 2000;
    width: min(680px, calc(100% - 24px));
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0f211b;
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 28px rgba(15, 33, 27, 0.35);
    font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

.cookie-banner-text { flex: 1; font-size: 12.5px; line-height: 1.5; }
.cookie-banner-text strong { display: block; font-size: 13px; margin-bottom: 2px; }
.cookie-banner-text span { color: rgba(255, 255, 255, 0.72); }
.cookie-banner-text a { color: #fff; text-decoration: underline; }

.cookie-banner button {
    flex: none;
    white-space: nowrap;
    border: 0;
    border-radius: 7px;
    background: #22614f;
    color: #fff;
    font: 600 13px 'IBM Plex Sans', system-ui, sans-serif;
    padding: 8px 16px;
    cursor: pointer;
}
.cookie-banner button:hover { background: #17493b; }

.cookie-banner-hide { opacity: 0; transition: opacity 0.25s ease; }

@media (max-width: 575.98px) {
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
    .cookie-banner button { width: 100%; }
}
