﻿/* Modern cookie banner */
.cookie-banner {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: calc(100% - 40px);
    background: #2A7F00;
    color: #fff;
    padding: 5px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-size: 0.7rem;
}

    .cookie-banner.hidden {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        pointer-events: none;
    }

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-close {
    background: #fff;
    color: #2A7F00;
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s ease;
}

    .cookie-close:hover {
        background: #e6e6e6;
    }
