    /* --- Cookie Banner Styles --- */
    #cookie-consent-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-top: 4px solid #007bff; /* Antera Labs Blue */
    }

    /* Class to trigger the slide-up animation */
    #cookie-consent-banner.cookie-banner-visible {
        transform: translateY(0);
    }

    .cookie-banner-hidden {
        display: none; /* Fallback for older browsers before JS kicks in */
    }

    .cookie-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .cookie-text {
        flex: 1;
        color: #333;
    }

    .cookie-text strong {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 8px;
        color: #111;
    }

    .cookie-text p {
        margin: 0 0 8px 0;
        font-size: 0.9rem;
        line-height: 1.5;
        color: #555;
    }

    .cookie-policy-link {
        font-size: 0.85rem;
        color: #007bff;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

    .cookie-policy-link:hover {
        text-decoration: underline;
        color: #0056b3;
    }

    .cookie-buttons {
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }

    .cookie-buttons button {
        padding: 10px 20px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
        border: none;
    }

    /* Primary Button (Accept) */
    .btn-primary {
        background-color: #007bff;
        color: #ffffff;
        box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
    }

    .btn-primary:hover {
        background-color: #0056b3;
        box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
    }

    /* Secondary Button (Reject) */
    .btn-secondary {
        background-color: #f1f1f1;
        color: #333;
        border: 1px solid #ddd !important;
    }

    .btn-secondary:hover {
        background-color: #e2e2e2;
    }


