﻿#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000; 
    display: none; /* Controlled by JS */
    background-color: #B44744;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7.5px 15px;
    max-width: 1200px; 
    margin: 0 auto;
}

.cookie-content {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    padding-right: 20px;
}

    .cookie-content a {
        color: #fff;
        text-decoration: underline;
        font-weight: 600;
        opacity: 0.9;
    }

        .cookie-content a:hover {
            opacity: 1;
            text-decoration: none;
        }

/* The "OK" Button Styling */
.btn-accept-full {
    background-color: #ffffff;
    color: #B44744;
    border: none;
    border-radius: 4px; 
    padding: 8px 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .btn-accept-full:hover {
        background-color: #f8f8f8;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

.banner-slide-up {
    animation: slideUpFull 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slideUpFull {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cookie-content {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .btn-accept-full {
        width: 100%;
    }
}
