/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.3s ease-out;
    border: 1px solid #e0e0e0;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-consent-text h5 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cookie-consent-actions .btn-primary {
    background-color: #007bff;
    border: none;
    color: white;
}

.cookie-consent-actions .btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.cookie-consent-actions .btn-secondary {
    background-color: #6c757d;
    border: none;
    color: white;
}

.cookie-consent-actions .btn-secondary:hover {
    background-color: #545b62;
    transform: translateY(-1px);
}

.cookie-consent-actions .btn-link {
    color: #007bff;
    text-decoration: none;
    padding: 8px;
}

.cookie-consent-actions .btn-link:hover {
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-actions .btn {
        width: 100%;
        text-align: center;
    }
}