/* Push Notification Styles */
.push-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.push-notification {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.push-notification.error {
    border-left: 4px solid #ff4444;
}

.push-notification.success {
    border-left: 4px solid #44ff44;
}

.push-notification.warning {
    border-left: 4px solid #ffaa44;
}

.push-notification.info {
    border-left: 4px solid #4488ff;
}

.push-notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.push-notification-icon svg {
    width: 100%;
    height: 100%;
}

.push-notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.push-notification-title {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
    font-family: 'Proxima Nova Rg', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

.push-notification-message {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-family: 'Proxima Nova Rg', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

.push-notification-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    border: none;
    background: none;
    padding: 0;
    margin-left: 4px;
}

.push-notification-close:hover {
    color: #ffffff;
}

.push-notification-close svg {
    width: 16px;
    height: 16px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.push-notification.hiding {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .push-notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .push-notification {
        min-width: auto;
        max-width: 100%;
    }
}


