
#CookielawBanner {
    background:  rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    
    /* Animation */
    animation: slideDown 0.4s ease-out;
    
    /* Modern styling */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Slide-down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#CookielawBanner .container {
    position: relative;
}

/* Enhanced text styling */
#CookielawBanner h6 {
    color: black;
    margin: 0 0 8px 0;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#CookielawBanner p {
    color: black;
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px lightgrey;
    line-height: 1.4;
}

/* Enhanced button styling */
#CookielawBanner .btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-shadow: none;
    white-space: nowrap;
}

#CookielawBanner .btn-light {
    background-color: white;
    border-color: white;
    color: var(--primary-color, #d32f2f);
}

#CookielawBanner .btn-light:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: var(--primary-color, #d32f2f);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#CookielawBanner .btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    color: white;
}

#CookielawBanner .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#CookielawBanner .btn:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    #CookielawBanner {
        padding: 10px 0;
    }
    
    #CookielawBanner h6 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    #CookielawBanner p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    #CookielawBanner .btn {
        font-size: 0.85rem;
        padding: 0.35rem 0.8rem;
    }
}
