/* Cookie Consent Modal Styles */
.cookie-consent-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    padding: 20px;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cookie-consent-header i {
    font-size: 24px;
    color: #ff9800;
}

.cookie-consent-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-consent-body {
    margin-bottom: 20px;
}

.cookie-consent-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.cookie-consent-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-consent-footer button {
    min-width: 80px;
}
