/* Push Notification Banner Styles */
.push-notification-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    animation: slideUp 0.3s ease-out;
}

.push-notification-banner-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    min-width: 320px;
}

.push-notification-banner .push-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.push-notification-banner .push-message {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
}

.push-notification-banner button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.push-notification-banner .push-enable-btn {
    background: white;
    color: #667eea;
}

.push-notification-banner .push-enable-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.push-notification-banner .push-dismiss-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.push-notification-banner .push-dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

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

/* Mobile responsive */
@media (max-width: 640px) {
    .push-notification-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
    }
    
    .push-notification-banner-content {
        flex-direction: column;
        text-align: center;
        min-width: unset;
    }
    
    .push-notification-banner button {
        width: 100%;
    }
}
