/**
 * Frontend CSS for Bundle WP Push Notification
 */

.bundle-wp-push-notification-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 20px;
    max-width: 350px;
    z-index: 99999;
    transform: translateY(150%);
    transition: transform 0.3s ease;
}

.bundle-wp-push-notification-prompt.show {
    transform: translateY(0);
}

.bundle-wp-push-notification-prompt-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bundle-wp-push-notification-prompt-icon {
    width: 40px;
    height: 40px;
    background: #0073aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
}

.bundle-wp-push-notification-prompt-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.bundle-wp-push-notification-prompt-message {
    margin-bottom: 15px;
    line-height: 1.5;
}

.bundle-wp-push-notification-prompt-gdpr {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.bundle-wp-push-notification-prompt-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.bundle-wp-push-notification-prompt-button {
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.bundle-wp-push-notification-prompt-button.accept {
    background: #0073aa;
    color: white;
}

.bundle-wp-push-notification-prompt-button.decline {
    background: #f7f7f7;
    color: #333;
    border: 1px solid #ddd;
}

.bundle-wp-push-notification-prompt-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #666;
}

.bundle-wp-push-notification-message {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #0073aa;
    color: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 99999;
    text-align: center;
}

@media (max-width: 768px) {
    .bundle-wp-push-notification-prompt {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
