.network-notification {
    position: fixed;
    top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.network-notification.offline {
    background: #f44336;
    color: white;
}

.network-notification.temporary.success {
    background: #4caf50;
    color: white;
}

.network-notification.temporary {
    background: #ff9800;
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content .icon {
    font-size: 16px;
}

.notification-content .message {
    flex: 1;
    font-size: 14px;
}

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