/* Cookie Consent Banner Styles */
#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1050;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content {
    flex: 1;
    margin-right: 20px;
    min-width: 250px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .cookie-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
