﻿#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: none;
    /* Matches the soft grey-blue of your page background */
    background-color: #f1f4f7;
    border-top: 2px solid #B44744; /* Added a thin top border using your red for flair */
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    font-family: Arial, Helvetica, sans-serif;
}

.cookie-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-message {
    color: #444;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

    .cookie-message a {
        color: #B44744; /* Using the red from your logo/button */
        text-decoration: underline;
        font-weight: bold;
    }

/* Branded Button - Matches your Login/Reset buttons */
.cookie-btn {
    background-color: #FF9933; /* Corporate Orange */
    color: #ffffff;
    border: 1px solid #e68a00;
    border-radius: 2px; /* Square-ish to match your existing buttons */
    padding: 6px 25px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: 20px;
    transition: background-color 0.2s;
}

    .cookie-btn:hover {
        background-color: #e68a00;
    }

/* Animation for smooth entry */
.banner-slide {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        margin: 10px 0 0 0;
        width: 100%;
    }
}
