/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1rem;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-consent-banner.cookie-banner-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.cookie-consent-banner h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
}

.cookie-consent-banner p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* For small screens */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
